Skip to content

使用 CSS 隐藏滚动条并绘制三角形

Published: at 09:46 AMSuggest Changes

需求

css 画一个三角形

搜 用 CSS 绘制最常见的 40 种形状和图形

https://www.webhek.com/post/40-css-shapes.html

https://segmentfault.com/a/1190000039200998

实现

代码都是复制过来的,糊上去就完事了

#triangle-left {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-right: 100px solid red;
    border-bottom: 50px solid transparent;
}

Previous Post
CSS 禁用文本选择
Next Post
JavaScript 的一些意想不到的 Bug