实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
img
6
{
7
float:left;
8
}
9
p.clear
10
{
11
clear:both;
12
}
13
</style>
14
</head>
15
<body>
16
17
<img src="/upload/love/css.gif" width="95" height="84" />
18
<p>This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</p>
19
<p class="clear">This is also some text. This is also some text. This is also some text. This is also some text. This is also some text. This is also some text.</p>
20
21
</body>
22
</html>
23