HTML之UL标签
发布网友
发布时间:2022-04-21 15:31
我来回答
共2个回答
热心网友
时间:2022-04-07 11:06
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Arrow</title>
<style>
html, body, ul{margin: 0; padding: 0; background-color: #000;}
ul, li{margin: 0; padding: 0; list-style: none;}
#box{position: relative; width: 100px; height: 50px; background-color: red; text-align: center; margin: 100px auto;}
h3{width: 100%; height: 100%; line-height: 50px; margin: 0;}
ul{background-color: #fff; display: none;}
li{font-size: 14px; line-height: 30px; cursor: pointer;}
span{position: absolute; display: none; border: 6px solid transparent; border-bottom-color: #fff; left: 50%; margin-left: -6px; top: 38px;}
#box:hover ul{display: block;}
#box:hover span{display: inline-block;}
</style>
</head>
<body>
<div id="box">
<h3>安全保障</h3>
<ul>
<li>合作保障机构</li>
<li>CFCA战略合作</li>
<li>*法规保障</li>
</ul>
<span></span>
</div>
</body>
</html>
可以通过图片,但是性能上稍微差一点,可以用一个标签的边框来表示,下边框有颜色其余的透明然后定位即可。代码是个小例子,你可以看看。
热心网友
时间:2022-04-07 12:24
用图片来弄