css总结-------------初学者

position:absolute;绝对定位
position:relative;相对定位
position:static;静态定位
position:sticky是一个新的css3属性,它的表现类似position:relative和position:fixed的合体,在目标区域在屏幕中可见时,它的行为就像position:relative; 而当页面滚动超出目标区域时,它的表现就像position:fixed,它会固定在目标位置。

    border: 3px solid #ffffff;
background-color: white; 边框设置为白色
font-size:14px   设置字体大小
font-family:'微软雅黑';字体设置为微软雅黑
font-weight:normal;字体不加粗
<marquee direction=left>从右往左播字幕</marquee>
cursor: pointer; 加小手
text-indent:2em;缩进2格
#000;黑色
#444;灰色
=========================div上邦方法VUE中=======================
 <div @click = "patrolMore(item.id)">{{item.patrolAccount.pname}}</div>

=========================A标签上邦方法=======================
<a href="###" @click = "patrolMore()" style="color:#000;border:none;font-weight:normal; background-color: white;font-family:'微软雅黑'" >更多<<</a>

=========================路由跳转=========================
patrolMore (id) {
        this.$router.push('inspection-center/inspection-record/'+id);
    },
patrolMore2 () {
        this.$router.push('inspection-center/inspection-record/'+'undefined');
    },

猜你喜欢

转载自blog.csdn.net/qq_39181017/article/details/84633489