2012-08-29 42 views

回答

5

一个良好的网站 - 一个小小要求将给你答案:

http://css-tricks.com/snippets/css/css-triangle/

.arrow-up { 
 
\t width: 0; 
 
\t height: 0; 
 
\t border-left: 5px solid transparent; 
 
\t border-right: 5px solid transparent; 
 
\t 
 
\t border-bottom: 5px solid black; 
 
} 
 

 
.arrow-down { 
 
\t width: 0; 
 
\t height: 0; 
 
\t border-left: 20px solid transparent; 
 
\t border-right: 20px solid transparent; 
 
\t 
 
\t border-top: 20px solid #f00; 
 
} 
 

 
.arrow-right { 
 
\t width: 0; 
 
\t height: 0; 
 
\t border-top: 60px solid transparent; 
 
\t border-bottom: 60px solid transparent; 
 
\t 
 
\t border-left: 60px solid green; 
 
} 
 

 
.arrow-left { 
 
\t width: 0; 
 
\t height: 0; 
 
\t border-top: 10px solid transparent; 
 
\t border-bottom: 10px solid transparent; 
 
\t 
 
\t border-right:10px solid blue; 
 
}
<div class="arrow-up"></div> 
 
<div class="arrow-down"></div> 
 
<div class="arrow-left"></div> 
 
<div class="arrow-right"></div>

+0

感谢您的回答。这正是我在寻找的。方便的东西。 – aspirinemaga

相关问题