实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
p.ex1 {padding:2cm;}
6
p.ex2 {padding:0.5cm 3cm;}
7
</style>
8
</head>
9
10
<body>
11
<p class="ex1">This text has equal padding on each side. The padding on each side is 2cm.</p>
12
<p class="ex2">This text has a top and bottom padding of 0.5cm and a left and right padding of 3cm.</p>
13
</body>
14
</html>
15