深圳全飞鸿

标题: ::before, ::after 用法 [打印本页]

作者: zhgc    时间: 2023-1-26 17:02
标题: ::before, ::after 用法

  1. <!DOCTYPE html>
  2. <html lang="en">

  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.   <title>Document</title>
  7.   <style>
  8.     * {
  9.       margin: 0;
  10.       padding: 0
  11.     }
  12.    
  13.     ul,
  14.     li {
  15.       list-style: none;
  16.     }

  17.     ul {
  18.       height: 40px;
  19.     }

  20.     li {
  21.       float: left;
  22.       position: relative;
  23.       margin: 0 10px;
  24.       color: #e94a3e;
  25.       font-size: 12px;
  26.       line-height: 40px;
  27.     }

  28.     .font {
  29.       padding: 0 4px 0;
  30.     }
  31.      /* before 和 after 都可以 */
  32.     .font:before {
  33.       content: "";
  34.       display: block;
  35.       position: absolute;
  36.       top: 9px;
  37.       width: 20px;
  38.       height: 20px;
  39.       -webkit-border-radius: 50%;
  40.       -moz-border-radius: 50%;
  41.       border-radius: 50%;
  42.       border: 1px solid #e94a3e;
  43.     }
  44.   </style>
  45. </head>

  46. <body>
  47. <ul>
  48.     <li>
  49.       <span class="font">正</span>
  50.       <span>100% 正品</span>
  51.     </li>
  52.     <li>
  53.       <span class="font">退</span>
  54.       <span>7天无忧</span>
  55.     </li>
  56.     <li>
  57.       <span class="font">邮</span>
  58.       <span>全场包邮(偏远地方除外)</span>
  59.     </li>
  60.   </ul>


  61. </body>

  62. </html>
复制代码







欢迎光临 深圳全飞鸿 (http://www.nagomes.com/disc/) Powered by Discuz! X3.2