小技巧-CSS 三角的做法
Posted qtbb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小技巧-CSS 三角的做法相关的知识,希望对你有一定的参考价值。
<!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 三角的做法的主要内容,如果未能解决你的问题,请参考以下文章
Android课程---Android Studio使用小技巧:提取方法代码片段