其他分享
首页 > 其他分享> > 修改图片 text-decoration属性,vertical-align画像对齐

修改图片 text-decoration属性,vertical-align画像对齐

作者:互联网

一.修改图片大小

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   底部对齐

标签:content,下划线,vertical,text,align,decoration,对齐
来源: https://www.cnblogs.com/WhiteGardenia/p/15472617.html