怎么让css的属性加中划线
发布网友
发布时间:2022-04-26 07:46
我来回答
共4个回答
热心网友
时间:2022-04-06 14:45
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:body{text-decoration: line-through;}。
3、浏览器运行index.html页面,此时用css成功让文本添加了中划线。
热心网友
时间:2022-04-06 16:03
加中划线: text-decoration:line-through;
text-decoration 属性规定添加到文本的修饰。
注释:修饰的颜色由 "color" 属性设置。
热心网友
时间:2022-04-06 17:37
加中划线: text-decoration:line-through;
text-decoration 属性规定添加到文本的修饰。
注释:修饰的颜色由 "color" 属性设置。
说明
这个属性允许对文本设置某种效果,如加下划线。如果后代元素没有自己的装饰,祖先元素上设置的装饰会“延伸”到后代元素中。不要求用户代理支持 blink。
默认值:none
继承性:no
版本:CSS1
JavaScript 语法:object.style.textDecoration="overline"
浏览器支持
所有主流浏览器都支持 text-decoration 属性。
注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。
注释:IE、Chrome 或 Safari 不支持 "blink" 属性值。
none 默认。定义标准的文本。
underline 定义文本下的一条线。
overline 定义文本上的一条线。
line-through 定义穿过文本下的一条线。
blink 定义闪烁的文本。
inherit 规定应该从父元素继承 text-decoration 属性的值。
参考资料:http://www.w3school.com.cn/css/pr_text_text-decoration.asp
热心网友
时间:2022-04-06 19:29
text-decoration:line-through;