ie11 div不显示背景颜色解决方案


我的一个场景就是,一个空的div,但是想加个背景颜色,方案就是在div加个空content,利用before属性加上背景
<div class="hilan"></div>
.hilan {
  position: relative;
  padding-right: 12px;
}
.hilan:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: black;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: 8px;
  left: 0;
}

  

 
posted @ 2019-12-05 11:19  山上小和尚  阅读(459)  评论(0编辑  收藏  举报