personal的制作

<style>
  .personal{
   float: right;
   height: 40px;
   line-height: 40px;
   width: 200px;
  }
  .personal dt,.personal dd{
   float: left;
  }
  .personnal s{
   position: relative;
   padding: 0 20 ;
  }
  .personal s::before{
   content: "";
   display: block;/*因为伪元素默认搜索行内元素*/
   width: 6px;
   height: 6px;
   background-color: red;
   border-radius: 50%;
   position: absolute;/*绝对定位不占位置*/
   right: 15px;
   top:0;
  }
  .personal spna img{
   border-radius:50%;
   margin-right: 10px;
  }
 </style>
</head>
<body>
 <!-- 个人中心 -->
 <div class="personal">
  <dl>
   <dt>个人中心</dt>
   <dd>
    <s>
     <img src="学成在线/images/ld.png" height="16px" width="14" alt="">
    </s>
    <span>
     <img src="学成在线/images/pic.png" width="33" height="33" alt="">andy
    </span>
   </dd>
  </dl>
</div>

猜你喜欢

转载自www.cnblogs.com/Annely/p/10284571.html
今日推荐