Drawing triangles (various angles) with pure CSS_Basic tutorial

WBOY
Release: 2016-05-16 12:03:55
Original
1573 people have browsed it

Our web pages have ever-changing styles because of CSS. This seemingly simple style language is very flexible in use. As long as you use your creativity, you can achieve many more unimaginable effects. Especially with the widespread use of CSS3, more novel CSS works have emerged.

Today I will bring you a CSS triangle drawing method
Drawing triangles (various angles) with pure CSS_Basic tutorial

Copy code The code is as follows:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

Copy code The code is as follows:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

Copy code The code is as follows:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

Copy code The code is as follows:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

复制代码 代码如下:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

复制代码 代码如下:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

复制代码 代码如下:

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

Drawing triangles (various angles) with pure CSS_Basic tutorial

复制代码 代码如下:

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




Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!