代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 500px;
height: 500px;
border-style: none;
margin: 0 auto;
}
ul li{
width: 210px;
height: 360px;
list-style-type: none;
display: inline-block;
border: none;
border-radius: 10px 10px 10px 10px;
padding: 10px 5px 2px 5px;
/*margin-left: 10px;*/
/*margin: 10px 5px 2px 5px;*/
}
.q{
font-weight: 900;
font-size: 20px;
}
span{
font-size: 10px;
font-weight: 700;
display: block;
padding: 2px 0 0 0;
}
ul li:hover{
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0,0,0,0.2);
}
img{
border-radius: 10px 10px 10px 10px;
}
.w{
font-size: 4px;
color: blue;
}
ol li{
list-style-type: none;
}
</style>
</head>
<body>
<div>
<ul>
<li>
<img src="image/1.jpg" alt="" width="210px" height="284px">
<span class="q">你好世界</span>
<span>每天早上说你好!</span>
<span class="w">阅读量:1232123</span>
</li>
</ul>
</div>
</body>
</html>
效果如下:
1、在图片的周围设置边距
2、在照片和li的边框的四个角进行了设置圆角
3、在li的边框能够看到鼠标经过时显现的阴影 白色的框
4、下面的字体使用了span标签和常用属性