fix replace code with applicable language postfix
This commit is contained in:
committed by
Kristofer Koishigawa
parent
4f83b58aa6
commit
3f56cf6f54
@ -6,7 +6,7 @@ localeTitle: استخدام محلل الجسم إلى Parse POST الطلبات
|
|||||||
|
|
||||||
يجب إضافة محلل الجسد بالفعل إلى مشروعك إذا كنت تستخدم النص المتوفر ، ولكن إذا لم يكن كذلك ، فيجب أن يكون موجودًا على النحو التالي:
|
يجب إضافة محلل الجسد بالفعل إلى مشروعك إذا كنت تستخدم النص المتوفر ، ولكن إذا لم يكن كذلك ، فيجب أن يكون موجودًا على النحو التالي:
|
||||||
|
|
||||||
```code
|
```json
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"body-parser": "^1.4.3",
|
"body-parser": "^1.4.3",
|
||||||
...
|
...
|
||||||
|
@ -176,7 +176,7 @@ and (orientation: landscape) {
|
|||||||
|
|
||||||
يمكنك أيضًا تعيين الحد الأدنى والحد الأقصى للعرض ، والذي يتيح لك إجراء التجارب باستخدام نطاقات مختلفة. هذا واحد تقريبا يطلق بين الهاتف smar وأكبر حجم سطح المكتب وأحجام الشاشة
|
يمكنك أيضًا تعيين الحد الأدنى والحد الأقصى للعرض ، والذي يتيح لك إجراء التجارب باستخدام نطاقات مختلفة. هذا واحد تقريبا يطلق بين الهاتف smar وأكبر حجم سطح المكتب وأحجام الشاشة
|
||||||
|
|
||||||
```code
|
```css
|
||||||
@media only screen and (min-width: 700px) and (max-width: 1500px) {
|
@media only screen and (min-width: 700px) and (max-width: 1500px) {
|
||||||
something {
|
something {
|
||||||
something: something;
|
something: something;
|
||||||
|
@ -11,6 +11,6 @@ Note that there is an issue with Glitch, where the link that clones the specific
|
|||||||
|
|
||||||
You should go over to the `package.json` file in your project. As mentioned in the instructional section of the lesson, JSON is written in key pairs like this:
|
You should go over to the `package.json` file in your project. As mentioned in the instructional section of the lesson, JSON is written in key pairs like this:
|
||||||
|
|
||||||
```code
|
```json
|
||||||
"author": "Jane Doe",
|
"author": "Jane Doe",
|
||||||
```
|
```
|
||||||
|
@ -168,7 +168,7 @@ body {
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
Breakpoints that are based on content as opposed to device are less complicated. Here's a simple snippet that triggers when the device's width is upward of ```code 700px``` roughly smart-phone screen sized
|
Breakpoints that are based on content as opposed to device are less complicated. Here's a simple snippet that triggers when the device's width is upward of `700px` roughly smart-phone screen sized
|
||||||
|
|
||||||
```css
|
```css
|
||||||
@media only screen and (min-width: 700px) {
|
@media only screen and (min-width: 700px) {
|
||||||
|
Reference in New Issue
Block a user