css基础练习

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
margin: 0px;
padding: 0ox;
}

.d1{
500px;
height: 500px;
border: 5px solid black;
background-color: red ;
color: gold;
font-size: 100px;
font-family: "微软雅黑";
font-style: italic;
font-weight: 100;
background-image: url(img/naruto.jpg) ;

}
</style>
</head>
<body>
<div class="d1">NARUTO<br> NARUTO<br>NARUTO<br></div>
<div class="d2"></div>
</body>
</html>

原文地址:https://www.cnblogs.com/sunbo123/p/7193391.html