/*使用梯形叠加实现伪圆角效果*/
.box{
width: 600px; height: 200px;
background-color: #c00;
}
.border{
width: 590px;
border:5px solid;
border-color: transparent;
}
.bottom{
border-bottom-color: #c00;
}
.top{
border-top-color: #c00;
}
.box{
width: 600px; height: 200px;
background-color: #c00;
}
.border{
width: 590px;
border:5px solid;
border-color: transparent;
}
.bottom{
border-bottom-color: #c00;
}
.top{
border-top-color: #c00;
}
2017-03-07
border宽度不可使用百分比,受此限制,无法用于百分比布局需要;
boder-color属性可继承color,因此可用于一次性优化多个布局;
border可以透明,transparent属性,可利用此属性生成三角或者梯形;
border-style中的double及dotted可用于创建三条短线样式、圆。
border以及background配合使用,可以定位背景图片至右侧。(backgroud-positon默认相对左上角)
boder-color属性可继承color,因此可用于一次性优化多个布局;
border可以透明,transparent属性,可利用此属性生成三角或者梯形;
border-style中的double及dotted可用于创建三条短线样式、圆。
border以及background配合使用,可以定位背景图片至右侧。(backgroud-positon默认相对左上角)
2017-03-07
最新回答 / 前端小蜗牛_
transition实现元素的过度效果,语法格式:transition : transition-property || transition-duration || transition-timing-function || transition-delay;分别表示:过度的属性,时间,方式,延迟时间。这里只说明方式:linear(速度不变),ease(默认值,缓慢开始,缓慢结束),ease-in(先慢后快),ease-out(先快后慢),ease-in-out(和ease有所差别,但差别不大)基于...
2017-03-04