- HTML代码:
<html>
<head>
<title>入门样式表小案例</title>
<!--引入css-->
<link rel="stylesheet" type="text/css" href="demo1.css"/>
</head>
<body>
<div class="style1">
<img src="stupidCat.jpg" />
</div>
</body>
</html>
- CSS代码:
.style1 {
border: 1px;
background-color: silver;
margin-left: 300px;
margin-top: 400px;
width: 500px;
height: 400px;
padding-top:100px;
padding-left:100px;
}
时间: 2024-10-26 14:39:02