이 글에서는 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>
관련 추천:
Angular4에서 콘텐츠를 표시하는 방법에 대한 CSS 스타일 샘플 코드
작은 프로그램에 대한 기본 지식 CSS 스타일 미디어 태그에 대한 자세한 설명
위 내용은 선택 상자 오른쪽에 있는 작은 삼각형 예제의 CSS 스타일 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!