后续更新分类将同步更新系列目录:
前端面试大全(CSS篇——1/2)。
font-size font-family color, UL LI DL DD DT
border padding margin width height
优先级为:
!important > id > class > tag
important 比内联优先级高
举例:
p:first-of-type 元素的每个 元素。 元素的每个 元素。 元素的每个 元素。 元素。 元素。
选择属于其父元素的首个
p:last-of-type
选择属于其父元素的最后
p:only-of-type
选择属于其父元素唯一的
p:only-child
选择属于其父元素的唯一子元素的每个
p:nth-child(2)
选择属于其父元素的第二个子元素的每个
:after
在元素之前添加内容,也可以用来做清除浮动
:before在
元素之后添加内容
:enabled
控制表单控件的可用状态
:disabled
控制表单控件的禁用状态
:checked
单选框或复选框被选中
div{
width:200px;
margin:0 auto;
}
.div {
width:500px ; height:300px;//高度可以不设
margin: -150px 0 0 -250px;
position:relative; //相对定位
background-color:pink; //方便看效果
left:50%;
top:50%;
}
position: absolute;
width: 1200px;
background: none;
margin: 0 auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
block
象块类型元素一样显示。
none
缺省值。象行内元素类型一样显示。
inline-block
象行内元素一样显示,但其内容象块类型元素一样显示。
list-item
象块类型元素一样显示,并添加样式列表标记。
table
此元素会作为块级表格来显示
inherit
规定应该从父元素继承display 属性的值
flex布局、grid布局等 ……
(: not(.input):所有class 不是“input”的节点)
(border-radius:8px)
(multi-column layout)
(Shadow\Reflect)
(text-shadow)
(Text-decoration)
(gradient)
(transform)
transform:\scale(0.85,0.90)\ translate(0px,-30px)\ skew(-9deg,0deg)\Animation:
把上、左、右三条边隐藏掉(颜色设为transparent)
#demo {
width: 0;
height: 0;
border-width: 20px;
border-style: solid;
border-color: transparent transparent red transparent;
}
简单的方式:
因为浏览器的兼容问题,不同浏览器对有些标签的默认值是不同的,如果没对CSS初始化往往会出现浏览器之间的页面显示差异。
当然,初始化样式会对SEO有一定的影响,但鱼和熊掌不可兼得,但力求影响最小的情况下初始化。
最简单的初始化方法:* {padding: 0; margin: 0;} (强烈不建议)
淘宝的样式初始化代码:
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
margin:0; padding:0; }
body, button, input, select, textarea {
font:12px/1.5tahoma, arial, \5b8b\4f53; }
h1, h2, h3, h4, h5, h6{
font-size:100%; }
address, cite, dfn, em, var {
font-style:normal; }
code, kbd, pre, samp {
font-family:couriernew, courier, monospace; }
small{
font-size:12px; }
ul, ol {
list-style:none; }
a {
text-decoration:none; }
a:hover {
text-decoration:underline; }
sup {
vertical-align:text-top; }
sub{
vertical-align:text-bottom; }
legend {
color:#000; }
fieldset, img {
border:0; }
button, input, select, textarea {
font-size:100%; }
table {
border-collapse:collapse; border-spacing:0; }
无论属于哪种,都要先找到其祖先元素中最近的position 值不为static 的元素,然后再判断:
补充:
创建规则:
作用:
以下是权重的规则:标签的权重为1,class的权重为10,id的权重为100,以下例子是演示各种定义的权重值:
/*权重为1*/ div{}
/*权重为10*/ .class1{}
/*权重为100*/ #id1{}
/*权重为100+1=101*/ #id1 div{}
/*权重为10+1=11*/ .class1 div{}
/*权重为10+10+1=21*/ .class1 .class2 div{}
如果权重相同,则最后定义的样式会起作用,但是应该避免这种情况出现
浮动元素脱离文档流,不占据空间。浮动元素碰到包含它的边框或者浮动元素的边框停留。
浮动元素引起的问题:
解决方法:
使用CSS中的clear:both;属性来清除元素的浮动可解决2、3问题,对于问题1,添加如下样式,给父元素添加clearfix样式:
.clearfix:after{
content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.clearfix{
display: inline-block;} /* for IE/Mac */
清除浮动的几种方法:
<div style="clear:both;">div>
#parent:after{
content:"."; height:0; visibility:hidden; display:block; clear:both;
}
css的媒体查询允许通过@media标签为特定媒体的浏览器设定样式,其中包含众多筛选,功能强大。
SASS (SASS、LESS没有本质区别,只因为团队前端都是用的SASS)
标签:前端面试,CSS
更多演示案例,查看 案例演示
欢迎评论留言!