>  기사  >  웹 프론트엔드  >  선택 상자 오른쪽에 있는 작은 삼각형 예제의 CSS 스타일 구현

선택 상자 오른쪽에 있는 작은 삼각형 예제의 CSS 스타일 구현

小云云
小云云원래의
2018-01-19 09:45:092498검색

이 글에서는 CSS 스타일을 사용하여 선택 상자 오른쪽에 작은 삼각형을 작성하는 방법을 예제 코드를 통해 소개합니다. 필요한 친구들이 참고하면 도움이 될 것입니다.

렌더링은 다음과 같습니다.

코드로 바로 이동하세요!


<!DOCTYPE html>
<html lang="en">
<head>
<title>小三角</title>
<style>
.up-triangle{
width:0px;
height:0px;
border-bottom:30px solid #000;
border-left:15px solid transparent;
border-right:15px solid transparent;
margin:100px auto; 
}
.down-triangle{
width:0px;
height:0px;
border-top:30px solid #000;
border-left:15px solid transparent;
border-right:15px solid transparent; 
margin:100px auto; 
}
.left-triangle{
width:0px;
height:0px;
border-right:30px solid #000;
border-top:15px solid transparent;
border-bottom:15px solid transparent; 
margin:100px auto; 
}
.right-triangle{
width:0px;
height:0px;
border-left:30px solid #000;
border-top:15px solid transparent;
border-bottom:15px solid transparent; 
margin:100px auto; 
}
</style>
</head>
<body>
<p class="up-triangle"></p>
<p class="down-triangle"></p>
<p class="left-triangle"></p>
<p class="right-triangle"></p>
</body>
</html>

관련 추천:

jQuery 작업 CSS 스타일 튜토리얼

Angular4에서 콘텐츠를 표시하는 방법에 대한 CSS 스타일 샘플 코드

작은 프로그램에 대한 기본 지식 CSS 스타일 미디어 태그에 대한 자세한 설명

위 내용은 선택 상자 오른쪽에 있는 작은 삼각형 예제의 CSS 스타일 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.