码迷,mamicode.com
首页 > 其他好文 > 详细

2.制作圆角菜单的两种方法

时间:2019-10-12 10:39:52      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:href   背景图   ext   样式   两种方法   方法   list   border   idt   

技术图片

 

 方法一:设置成背景图片 style{background:url(../image/2.jpg);}

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>垂直菜单</title>
    <style type="text/css">
        *{margin: 0;padding: 0;}
        .class1 {border-bottom: 5px solid #f60;height: 50px;padding-left: 30px;list-style: none;}
        .class1 li a{display: block;float: left;width: 120px;height: 30px;margin-top:20px;line-height: 30px;text-align: center;text-decoration: none;background: url(../image/2.jpg);}
        .class1 li .shouYe,.class1 li a:hover{color: white;background: url(../image/1.jpg);background-position:  0 -30px}

    </style>
</head>
<body>
    <ul class="class1">
        <li><a href="" class="shouYe">首   页</a></li>
        <li><a href="">新闻快讯</a></li>
        <li><a href="">产品展示</a></li>
        <li><a href="">联系我们</a></li>
    </ul>    
</body>
</html>

方法二:直接设置成圆角样式 style{border-top-left-radius:20px;border-top-right-radius:20px;}

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>垂直菜单</title>
    <style type="text/css">
        *{margin: 0;padding: 0;}
        .class2{border-bottom: 5px solid #f60;height: 50px;padding-left: 30px;list-style: none;}
        .class2 li a{display: block;float: left;width: 120px;height: 30px;margin-top: 20px;line-height: 30px;text-align: center;text-decoration: none;background-color: #ccc;border-top-left-radius: 20px;border-top-right-radius: 20px;}
        .class2 li .shouYe,.class2 li a:hover{color: white;background-color: #f60}
    </style>
</head>
<body>
    <ul class="class2">
        <li><a href="" class="shouYe">首   页</a></li>
        <li><a href="">新闻快讯</a></li>
        <li><a href="">产品展示</a></li>
        <li><a href="">联系我们</a></li>
    </ul>
    
</body>
</html>

 

2.制作圆角菜单的两种方法

标签:href   背景图   ext   样式   两种方法   方法   list   border   idt   

原文地址:https://www.cnblogs.com/chenJieLing/p/11659832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!