5.html
来自「《CSS完全使用详解》 源文件下载 书籍源码」· HTML 代码 · 共 22 行
HTML
22 行
<html>
<head>
<title>CSS Demo</title>
<style>
.img1 { position: absolute;
top: 50px;
left: 50px; }
.img2 { position: absolute;
top: 100px;
left: 100px; }
.img3 { position: absolute;
top: 150px;
left: 150px; }
</style>
</head>
<body>
<img src="winxp.gif" width="280px" height="210px" alt="Windows XP" class="img1">
<img src="winxp.gif" width="280px" height="210px" alt="Windows XP" class="img2">
<img src="winxp.gif" width="280px" height="210px" alt="Windows XP" class="img3">
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?