Gyh's blog

vuePress-theme-reco gyh    2022
Gyh's blog Gyh's blog

Choose mode

  • dark
  • auto
  • light
Home
Category
  • Algorithm
  • CSS
  • JavaScript
  • Others
  • Server
  • Utils
  • Article
  • Note
  • Git
  • Npm
  • Standard
  • Summary
Tag
Timeline
About
GitHub
author-avatar

gyh

91

Article

11

Tag

Home
Category
  • Algorithm
  • CSS
  • JavaScript
  • Others
  • Server
  • Utils
  • Article
  • Note
  • Git
  • Npm
  • Standard
  • Summary
Tag
Timeline
About
GitHub

用 div 画三角

vuePress-theme-reco gyh    2022

用 div 画三角

gyh 2018-09-09

整理了一下以前的笔记,一并发出来。

用 div 画三角

#sanjiao {
  border-style: solid;
  border-width: 100px 100px 0px 100px;
  border-color: blue transparent transparent transparent;
  width: 0px;
}
.sanjiao2 {
  border: 100px solid;
  border-color: #333 transparent transparent transparent;
  width: 0;
}
1
2
3
4
5
6
7
8
9
10
11
Edit on GitHub~
LastUpdated: 5/17/2022, 8:59:22 AM