html5實現尖角號

來源:互聯網
上載者:User

標籤:normal   doc   mic   height   for   pos   code   set   margin   

首先,來寫一個簡單的代碼:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>    .arrow {        width:0;        height:0;        font-size:0;        border:solid 10px;        border-color:#f00 #0f0 #00f #000;    }    </style></head><body>    <div class="arrow"></div></body></html>

 我們發現,原來當div的寬度和高度都是0的時候,它的整個邊框是由四個三角形組成的,每一邊為一個三角形,那麼我們就可以利用這個特點,來做可愛的小尖角了。我們只要把不需要的三邊的邊框(三角形)的顏色設定為與背景相同即可,這樣就只能看到你想要的那個三角形了,然後再利用定位調整一下位置就可以了。具體代碼如下所示:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>    body {    background:#4D4948;}.send {    position:relative;    /*父類用相對位置*/    width:150px;    height:35px;    background:#F8C301;    border-radius:5px; /* 圓角 */    margin:30px auto 0;}.send .arrow {    position:absolute;    /*子類用絕對位置*/    top:5px;    /*向下移動五個像素*/    right:-16px;    /*調試三角的位置*/    width:0;    height:0;    font-size:0;    border:solid 8px;    border-color:#4D4948 #4D4948 #4D4948 #F8C301;}    </style></head><body>    <div class="send">    <div class="arrow"></div>    </div></body></html>

 

html5實現尖角號

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.