CSS implementation of drop-down menu (simple version)

Preface

Today, I wrote a small demo of the drop-down menu for my friend using css. It is very rough. I will share it with you here for everyone to learn and use.

Code

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>下拉菜单demo</title>
    <style type="text/css">
    	*{
     
     
    		padding: 0;
    		margin: 0
    	}
  		a{
     
     
  			text-decoration:none;
  			width: 100px;
  		}
	    div.select-menu {
     
     
	    	position: absolute;
	        width: 100px;
	        height: 20px;
	        background: #b2bec3;
	    }

	    div.select-menu ul {
     
     
	    	position: relative;
	    	width: 100px;
	    	height: auto;
	        list-style: none;
	        text-align: center;
	        background: #b2bec3;
	        padding-top: 5px;
	        padding-bottom: 5px;
	    }

	    div.select-menu ul:nth-child(2){
     
     
	    	display: none;
	    }

	    div.select-menu:hover ul:nth-child(2){
     
     
	    	display: block;
	    }

 		div.select-menu ul li{
     
     
	        position: relative;
	        height: 20px;
	        padding: 5px;
	    }

	    div.select-menu ul li:hover{
     
     
	        background: #FFF;
	    }
    </style>
</head>

<body>
    <div class="select-menu">
    	<ul>下拉菜单</ul>
        <ul>
            <li><a href="">选项1</a></li>
            <li><a href="">选项2</a></li>
            <li><a href="">选项3</a></li>
            <li><a href="">选项4</a></li>
        </ul>
    </div>
</body>

</html>

effect

Insert picture description here

Recommended by other articles in this blog

A carousel diagram using only CSS? Come take a look!

Native js gets CSS pseudo-class elements and sets attributes

Imitate a ball landing effect, and finally stop on the ground (simulation effect, CSS implementation)

Let a small ball bouncing infinitely~ (CSS realizes infinite bouncing of the ball)

If there is a screen of love, who would you give it to? (Simple implementation of native js and css to randomly generate 521 hearts)

Guess you like

Origin blog.csdn.net/L333333333/article/details/101641861