> 웹 프론트엔드 > HTML 튜토리얼 > CSS通过边框border-style来写小三角_html/css_WEB-ITnose

CSS通过边框border-style来写小三角_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:27:56
원래의
1915명이 탐색했습니다.

<!DOCTYPE html><br />
로그인 후 복사
/*直接复制代码即可在浏览器验证*/<br /><br /><html>
로그인 후 복사
<head lang="en"><br />    <meta charset="UTF-8"><br />    <title></title><br />    <style><br />        * {<br />            margin: 0;<br />            padding: 0;<br />        }<br />        /*盒子的样式*/<br />        .box {<br />            position: relative;<br />            margin: 20px auto;<br />            height: 200px;<br />            width: 200px;<br />            background: rgba(0, 0, 0, 0.5);<br />        }<br />        /*利用border-style实现*/<br />        .drop-down {<br />            position: absolute;<br />            top: 10px;<br />            left: 10px;<br />            height: 0;<br />            width: 0;<br />            border: 3px;<br />            /*style依次是上边框、右、下、左*/<br />            border-style: solid dashed dashed dashed;<br />            /*想实现向下的三角就把上边框设置为实现其余几个边框都是虚线并且颜色设置为透明*/<br />            border-left-color: transparent;<br />            border-right-color: transparent;<br />            border-bottom-color: transparent;<br />            color: #fff;<br />        }<br /><br />        /*再来写个三角向右的例子*/<br />        .right {<br />            position: absolute;<br />            top: 10px;<br />            left: 30px;<br />            height: 0;<br />            width: 0;<br />            border:10px;<br />            border-style:dashed dashed dashed solid;<br />            border-top-color: transparent;<br />            border-right-color: transparent;<br />            border-bottom-color: transparent;<br />            color: yellowgreen;<br />        }<br /><br /><br />    </style><br /></head><br /><body><br /><!--先写个盒子加上黑色背景,来和生成的小三角来做下对比--><br /><div class="box"><br />    <i class="drop-down"></i><br />    <i class="right"></i><br /></div><br /><br /></body><br /></html><br /><br /><br /><br />
로그인 후 복사

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿