您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“如何使用html制作箭頭”,內(nèi)容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“如何使用html制作箭頭”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
1.編寫盒子代碼
首先我們使用開發(fā)工具設置編碼格式為 Utf-8
(一般的文件都是這個格式,這邊我們使用的是HBuilderX編輯器)在 .html文件中加入代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>html小箭頭技巧</title>
</head>
<body>
<div id="content">
<i class="dd"></i><br />
<i class="d2"><i class="d3"></i></i>
</div>
<script type="text/javascript">
</script>
</body>
</html>
我們在代碼中還添加了類屬性
從而方便我們的樣式設計。
2.添加樣式
我們通過在 .html 文件中添加內(nèi)聯(lián)式的 css 樣式從而實現(xiàn)我們想要的效果,代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>html小箭頭技巧</title>
</head>
<style>
/*margin-left在ie中會出現(xiàn)2倍邊距bug,解決辦法:在style里面添加display:inline。*/
* {
padding: 0px;
margin: 0px;
}
#content {
width: 100px; height: 100px;
margin: 0 auto; border: 1px solid red;
position: relative;
}
/*小三角形的尖角要向那一邊,那一邊的寬度就設置為0*/
.dd {
position: absolute;
top: 20px; left: 10px;
border-width: 20px 20px 0px 20px;
border-color: black transparent transparent transparent;
border-style: solid dashed dashed dashed;
}
</style>
<body>
<div id="content">
<i class="dd"></i><br />
<i class="d2"><i class="d3"></i></i>
</div>
<script type="text/javascript">
</script>
</body>
</html>
在代碼中我們添加了絕對定位 position: absolute;
來設置我們的箭頭位置。通過樣式我們就可以完成箭頭的設置。
讀到這里,這篇“如何使用html制作箭頭”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內(nèi)容的文章,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。