fix: converted single to triple backticks9 (#36236)

This commit is contained in:
Randell Dawson
2019-06-20 14:49:26 -07:00
committed by Tom
parent ab2523953b
commit da6bd27eec
75 changed files with 1904 additions and 1733 deletions

View File

@@ -12,33 +12,33 @@ localeTitle: الصور في HTML
## مثال
`
<img src="URL of the Image" alt="Descriptive Title" />
`
```html
<img src="URL of the Image" alt="Descriptive Title" />
```
### لتحديد ارتفاع وعرض صورة ، يمكنك استخدام سمة الارتفاع والعرض:
`
<img src="URL of the Image" alt="Descriptive Title" height="100" width="150"/>
`
```html
<img src="URL of the Image" alt="Descriptive Title" height="100" width="150"/>
```
### يمكنك أيضًا تحديد سمك الحدود (0 يعني عدم وجود حد):
`
<img src="URL of the Image" alt="Descriptive Title" border="2"/>
`
```html
<img src="URL of the Image" alt="Descriptive Title" border="2"/>
```
### محاذاة صورة:
`
<img src="URL of the Image" alt="Descriptive Title" align="left"/>
`
```html
<img src="URL of the Image" alt="Descriptive Title" align="left"/>
```
### يمكنك أيضًا استخدام الأنماط في سمة نمط:
`
<img src="URL of the Image" alt="Descriptive Title" style="width: 100px; height: 150px;"/>
`
```html
<img src="URL of the Image" alt="Descriptive Title" style="width: 100px; height: 150px;"/>
```
#### معلومات اكثر