html style有什么属性

html style有什么属性,第1张

一般的html标签都可以加入style属性直接使用css样式。比如

<div style="css样式"><div>

<span style="css样式"></div>

<ul style="css样式"></ul>

<li style="css样式"></li>

等,基本上body及以内使用的标签对象都可以使用style属性加入css样式。

<!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>

可以通过图片,但是性能上稍微差一点,可以用一个标签的边框来表示,下边框有颜色其余的透明然后定位即可。代码是个小例子,你可以看看。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6177061.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-17
下一篇 2023-03-17

发表评论

登录后才能评论

评论列表(0条)

保存