CSS Magic Series: Draw basic shapes (circles, ellipses, etc.) with pure CSS_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:34:44
Original
1734 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. "CSS Magic Series" continues to bring you the use of CSS in web pages and graphics drawing. This article brings you pure CSS to draw basic shapes (circles, ellipses, etc.).

Related articles you may be interested in

35 amazing CSS3 animation effect demonstrations on the Web Frontier: A set of extremely gorgeous CSS3 effects on the Web Frontier: Ten amazing CSS3 applications The annual feast of carefully selected online CSS3 code generation tools: the most exciting CSS3 tutorials in 2012

Square

#square {	width: 100px;	height: 100px;	background: red;}
Copy after login

 

Rectangle

#rectangle {	width: 200px;	height: 100px;	background: red;}
Copy after login

 

Circle

#circle {	width: 100px;	height: 100px;	background: red;	-moz-border-radius: 50px;	-webkit-border-radius: 50px;	border-radius: 50px;}/* Cleaner, but slightly less support: use "50%" as value */
Copy after login

 

Oval

#oval {	width: 200px;	height: 100px;	background: red;	-moz-border-radius: 100px / 50px;	-webkit-border-radius: 100px / 50px;	border-radius: 100px / 50px;}/* Cleaner, but slightly less support: use "50%" as value */
Copy after login

 

Trapezoid

#trapezoid {	border-bottom: 100px solid red;	border-left: 50px solid transparent;	border-right: 50px solid transparent;	height: 0;	width: 100px;}
Copy after login

 

Parallelogram

#parallelogram {	width: 150px;	height: 100px;	-webkit-transform: skew(20deg);	   -moz-transform: skew(20deg);	     -o-transform: skew(20deg);	background: red;}
Copy after login

 

Related articles you may be interested in

CSS3 in web design The 20 best amazing applications recommend 12 beautiful CSS3 button implementation solutions. Recommend 10 excellent CSS3 development tools. Share 50 beautiful CSS3 best application examples. 24 very practical CSS3 tools. The ultimate collection

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!