下标小圆点的制作

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	* {
		margin: 0;
		padding: 0;
	}
	li {
		list-style: none;
	}
	ul {
		width: 65px;
		height: 13px;
		background: rgba(225,225,225,0.5);
		border-radius: 6px;
	}

	ul li {
		width: 9px;
		height: 9px;
		background-color: #B7B7B7;
		float: left;
		margin: 2px;
		border-radius: 50%;
	}
	</style>
</head>
<body>
	<div class="slider">
		<ul>
			<li></li>
			<li></li>
			<li></li>
			<li></li>
			<li></li>
		</ul>
	</div>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/wusiye_123456/article/details/78563677