CSS 3 새 기능 으로 투명 테두리 삼각형 만 들 기

먼저 효 과 를 살 펴 보 자.이 는 CSS 3 이전 에는 상상 할 수 없 었 다.그림 만 이 할 수 있 었 지만 HTML 5 와 CSS 3 가 활 개 치 는 오늘날 이런 효 과 를 이 루 는 것 은 아무것도 아니 었 다.

실 현 된 코드 를 보십시오.

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>

/*     */
.arrow-up {
 width: 0;
 height: 0;
 border-left: 20px solid transparent;
 border-right: 20px solid transparent;
 border-bottom: 20px solid green;
}

/*     */
.arrow-down {
 width: 0;
 height: 0;
 border-left: 20px solid transparent;
 border-right: 20px solid transparent;
 border-top: 20px solid orange;
}

/*     */
.arrow-right {
 width: 0;
 height: 0;
 border-top: 60px solid transparent;
 border-bottom: 60px solid transparent;
 border-left: 60px solid blue;
}

/*     */
.arrow-left {
 width: 0;
 height: 0;
 border-top: 10px solid transparent;
 border-bottom: 10px solid transparent;
 border-right: 10px solid silver;
}
</style>
</head>
<body>
 <div class="arrow-up"></div>
 <div class="arrow-down"></div>
 <div class="arrow-left"></div>
 <div class="arrow-right"></div>
</body>
</html>

좋은 웹페이지 즐겨찾기