一.修改图片大小
1.先修改图片所在元素的父元素css样式
.content .star li{
background-color: #FFFFFF;
width: 180px;
margin: 0 3px;
}
2.父元素修改完成才能修改图片所在元素的大小
.content .star img{
width: 180px;
}
二.text-decoration属性
text-decoration 属性规定添加到文本的修饰,下划线、上划线、删除线等。
text-decoration: none; /*没有文本装饰*/
text-decoration: underline red; /*红色下划线*/
text-decoration: underline wavy red; /*红色波浪形下划线*/
.content a{
text-decoration: none;
}
此处为去除a标签的下划线
三.vertical-align:top 垂直对齐一幅画像(顶部对齐)
vertical-align:bottom 底部对齐