案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<h3>不带有外边距的图像:</h3>
5
<p>
6
<img src="/img/w3xue_logo_white.jpg" align="middle" />
7
This is some text. This is some text. This is some text.
8
</p>
9
10
<h3>左右外边距各为 50 像素的图像:</h3>
11
<p>
12
<img src="/img/w3xue_logo_white.jpg" align="middle" style="margin:0px 50px" />
13
This is some text. This is some text. This is some text.
14
</p>
15
16
</body>
17
</html>