为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

3 回答

<div class="add"></div>


.add{

  width:100px;

  height:100px;

  border:1px solid;

  color:#ccc;

  transition:color 0.25s;

  position:relative;

}

.add:before{

content:" ";

      display:block;

  width:60px;

  height:10px;

  border-color:#ccc;

  border-top:10px solid;

  position:absolute;

  top:50%;

  left:50%;

  margin: -5px 0 0 -30px ;

}

.add:after{

  content:" ";

  display:block;

  width:10px;

 height:60px;

  border-color:#ccc;

  border-left:10px solid;

  position:absolute;

  top:50%;

  left:50%;

  margin:-30px 0 0 -5px;

}

.add:hover{

  color:#f6c;

}


2 回复 有任何疑惑可以回复我~
#1

qq_刺猬先生_03549865 提问者

非常感谢!
2016-12-29 回复 有任何疑惑可以回复我~
#2

Levier007

请问方便注释下代码吗 看不太懂 content:"" 代表啥?
2017-05-11 回复 有任何疑惑可以回复我~
#3

weixin_慕数据3255160

我觉得是空字符display成块元素这样好排版
2019-08-08 回复 有任何疑惑可以回复我~

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
 <style>
.add{
     display: block;
width:100px;
height:100px;
border:1px solid;
color:#ccc;
transition:color 0.25s;
position:relative;
}
   .add:before{
     content:" ";
width:60px;
border-top:10px solid;
position:absolute;
top:50%;
left:50%;
margin: -5px 0 0 -30px ;
}
   .add:after{
     content:" ";
height:60px;
border-left:10px solid;
position:absolute;
top:50%;
left:50%;
margin:-30px 0 0 -5px;
}
   .add:hover{
     color:#f6c;
}
 </style>
</head>
<body>
<a href="javascript:" class="add"></a>
</body>
</html>

1 回复 有任何疑惑可以回复我~
<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
    .add{
        display: block;
        width: 100px;
        height: 100px;
        color: #ccc;
        border:1px solid;
        position: relative;
    }
    .add:before{
        content: '';
        width: 60px;
        border-top:10px solid;
        position: absolute;
        top:45px;
        left: 20px;
    }
    .add:after{
        content: '';
        height: 60px;
        border-left:10px solid;
        position: absolute;
        top:20px;
        left: 45px;
    }
    .add:hover{
        color:#06c;
    }
    </style>
</head>
<body>
    <a href="javascript:;"></a>
</body>
</html>


2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

那个加号怎么画的啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信