这段css代码大概是啥意思

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了这段css代码大概是啥意思相关的知识,希望对你有一定的参考价值。

.sideBar .menuBox li
font:14px 宋体;
height:30px;
line-height:25px;
border-top:1px white solid;


.sideBar .menuBox li a
display:block;
padding-left:35px;
background:transparent url('images/menu-bullet.png') no-repeat 20px center;
height:25px;


.sideBar .menuBox li a:hover
display:block;
color:#069;
background:white url('images/menu-bullet.png') no-repeat 20px center;

.sideBar .menuBox li                       <!-- li控件的样式 -->
font:14px 宋体;
height:30px;
line-height:25px;
border-top:1px white solid;


.sideBar .menuBox li a                      <!-- li控件中的a标签样式 -->
display:block;
padding-left:35px;
background:transparent url('images/menu-bullet.png') no-repeat 20px center;
height:25px;


.sideBar .menuBox li a:hover                <!-- 鼠标放在a标签上时,a标签的样式 -->
display:block;
color:#069;
background:white url('images/menu-bullet.png') no-repeat 20px center;

参考技术A .sideBar .menuBox li //cass为sideBar 里的menuBox里的 li 的样式
font:14px 宋体; 字体为大小14px 宋体
height:30px; //高度:30px
line-height:25px; //行高:25px
border-top:1px white solid; //上边框 1px 白色 单线

.sideBar .menuBox li a li里面的a标签的样式
display:block; //块区域 默认的
padding-left:35px; //左边的外边距为35px
background:transparent url('images/menu-bullet.png') no-repeat 20px center; //背景用图片代替
height:25px; //高度25px


.sideBar .menuBox li a:hover //a 标签鼠标移上去的效果
display:block; //默认
color:#069; //a 标签字体的颜色变成#069 的颜色
background:white url('images/menu-bullet.png') no-repeat 20px center; //背景用图片
本回答被提问者采纳

以上是关于这段css代码大概是啥意思的主要内容,如果未能解决你的问题,请参考以下文章

div+css里面左浮动 右浮动 到底是啥意思??

div+css里面左浮动 右浮动 到底是啥意思??

vscode做前端时css有些代码提示被划掉了是啥意思?有图

display:table;是啥意思? html中(css)

css中content: " ";是啥意思?有啥用?

CSS/HTML代码attribute 对象 是啥意思,代表啥