实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
body {display:inline}
6
p {display:inherit}
7
</style>
8
</head>
9
<body>
10
11
<p>These two paragraphs generates inline boxes, and it results in</p>
12
13
<p>no distance between the two elements.</p>
14
15
</body>
16
</html>
17