css拓展
Posted strawberry-1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css拓展相关的知识,希望对你有一定的参考价值。
自定义居中
.second-listleft/*固定位置*/
position: relative;
float: left;
width: 25%;
height: 100%;
background: forestgreen;
table/*根据固定的位置 进行绝对的移动*/
position: absolute;
top:50%;
left:0;
transform: translate(20%,-50%);
/*变色特效*/
div /*好玩的特效*/
animation: myfirst 5s;
@keyframes myfirst/*好玩的特效*/
0% background: red;
25% background: yellow;
50% background: blue;〉
100% background: green;
改变边框色彩
outline:none;
border-color: rgba(0,0,0,0.3);
以上是关于css拓展的主要内容,如果未能解决你的问题,请参考以下文章
9.12/ css3拓展js基础语法程序基本知识数据类型运算符表达方式语句知识点
(Ⅰ)处理浏览器兼容问题的思路是怎样的?| CSS 拓展:① 浏览器兼容