码迷,mamicode.com
首页 > Web开发 > 详细

css拓展

时间:2019-09-14 16:22:25      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:nsf   div   out   second   边框   rgb   tran   position   orm   

自定义居中

.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拓展

标签:nsf   div   out   second   边框   rgb   tran   position   orm   

原文地址:https://www.cnblogs.com/strawberry-1/p/11519242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!