实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
h1.visible {visibility:visible}
6
h1.hidden {visibility:hidden}
7
</style>
8
</head>
9
10
<body>
11
<h1 class="visible">This is a visible heading</h1>
12
<h1 class="hidden">This is an invisible heading</h1>
13
<p>Notice that the invisible heading still takes up space.</p>
14
</body>
15
16
</html>
17