码迷,mamicode.com
首页 > Web开发 > 详细

小技巧-CSS 三角的做法

时间:2019-10-24 23:42:11      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:透明   com   har   ini   parent   idt   doctype   pre   nbsp   

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      /*
      宽和高设置为0 (貌似可以省略)
      防止兼容性,line-height 和 font-size 设置为 0
      */
      .nav {
        width: 0;
        height: 0;
        line-height: 0;
        font-size: 0;
        border: 30px solid transparent; /* 边框颜色设置为透明 */
        border-left-color: turquoise;
      }
    </style>
  </head>
  <body>
    <div class="nav"></div>
  </body>
</html>

 

小技巧-CSS 三角的做法

标签:透明   com   har   ini   parent   idt   doctype   pre   nbsp   

原文地址:https://www.cnblogs.com/qtbb/p/11735443.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!