사각형(사각형)
#square{ width:100px; height:100px; backgroud:red; }
사각형(사각형)
#rectangle { width: 200px; height: 100px; background: red;
원(circle)
#circle { width: 100px; height: 100px; background: red; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; }
/ 백분율 값(50% 이상)을 사용할 수 있으나, 안드로이드 하위 버전 지원 불가 /
타원형(oval)
#oval { width: 200px; height: 100px; background: red; -moz-border-radius: 100px / 50px; -webkit-border-radius: 100px / 50px; border-radius: 100px / 50px; }
/ 백분율 값(50% 이상) 사용 가능하나, 안드로이드 하위 버전 지원하지 마세요 /
Triangle Up(Upward Triangle)
#triangle-up { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red; }
Triangle Down(Down)
#triangle-down { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-top: 100px solid red; }
왼쪽삼각형(왼쪽)
#triangle-left { width: 0; height: 0; border-top: 50px solid transparent; border-right: 100px solid red; border-bottom: 50px solid transparent; }
오른쪽삼각형(오른쪽)
아아아아사각형(사각형)
#triangle-right { width: 0; height: 0; border-top: 50px solid transparent; border-left: 100px solid red; border-bottom: 50px solid transparent; }
사각형(사각형)
#square{ width:100px; height:100px; backgroud:red; }
원(원)
#rectangle { width: 200px; height: 100px; background: red;
/ 백분율 값 (50% 이상)을 사용할 수 있으나 Android 하위 버전에서는 지원하지 않음/
타원형(타원형)
#circle { width: 100px; height: 100px; background: red; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; }
/ 백분율 값 (50% 이상)을 사용할 수 있으나 Android 하위 버전에서는 지원하지 않음/
삼각형 위쪽(위쪽 삼각형)
#oval { width: 200px; height: 100px; background: red; -moz-border-radius: 100px / 50px; -webkit-border-radius: 100px / 50px; border-radius: 100px / 50px; }
아래쪽 삼각형
#triangle-up { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red; }
왼쪽 삼각형
#triangle-down { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-top: 100px solid red; }
Triangle Right(right)
#triangle-left { width: 0; height: 0; border-top: 50px solid transparent; border-right: 100px solid red; border-bottom: 50px solid transparent; }다양한 그래픽 및 관련 기사를 그리는 더 많은 CSS 방법을 보려면 다음을 참고하세요. PHP 중국어 웹사이트!