css属性3
Posted yfjly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css属性3相关的知识,希望对你有一定的参考价值。
css属性,只有块级标签设计宽和高才会生效:
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>选择器的优先级</title> <link rel="stylesheet" href="zz.css" type="text/css"> <style> .c1 { width: 360px; height: 200px; background-color: #75b976;} span { width: 100px; height: 120px; background-color: #20201c; font-size: 44px; font-weight: 800; font-color: yellow; color: white; color:#FFFFFF; color:rgba(255,255,255,0.5) } a{ text-decoration: none; } </style> </head> <body> <div class="c1">div</div> <div>div1</div> <span>我是span</span> <a href="https://www.baidu.com">baidu</a> <p></p> </body> </html>
以上是关于css属性3的主要内容,如果未能解决你的问题,请参考以下文章