http://caibaojian.com/css-border-triangle.html
.text{
height: 0;
width: 0;
/* 这里设置overflow, font-size, line-height,是因为,
* 虽然宽高度为0, 但在IE6下会具有默认的字体大小和行高,
* 导致盒子呈现被撑开的长矩形*/
overflow: hidden;
font-size: 0;
line-height: 0;
border-color: #FF9600 transparent transparent transparent;
border-style: solid dashed dashed dashed;
/*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果~*/
border-width: 20px;
}
时间: 2024-10-20 06:44:48