CSS 按钮组

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lengyuezuixue/article/details/82154178

CSS 垂直按钮组

<!DOCTYPE html >
<html>
	<head>
		<meta charset="utf-8"> 
		<title>自学教程(如约智惠.com)</title> 
		<style >
			.btn-group button {
				background-color: #4CAF50; /* Green background */
				border: 1px solid green; /* Green border */
				color: white; /* White text */
				padding: 10px 24px; /* Some padding */
				cursor: pointer; /* Pointer/hand icon */
				width: 50%; /* Set a width if needed */
				display: block; /* Make the buttons appear below each other */
			}

			.btn-group button:not(:last-child) {
				border-bottom: none; /* Prevent double borders */
			}

			/* Add a background color on hover */
			.btn-group button:hover {
				background-color: #3e8e41;
			}
		</style>
	</head>
	<body >
		<h2>垂直按钮组</h2>

		<div class="btn-group">
		  <button>Apple</button>
		  <button>Samsung</button>
		  <button>Sony</button>
		</div>
		
	</body>
</html>

CSS按钮组

<!DOCTYPE html >
<html>
	<head>
		<meta charset="utf-8"> 
		<title>自学教程(如约智惠.com)</title> 
		<style >
			.btn-group button {
				background-color: #4CAF50; /* Green background */
				border: 1px solid green; /* Green border */
				color: white; /* White text */
				padding: 10px 24px; /* Some padding */
				cursor: pointer; /* Pointer/hand icon */
				float: left; /* Float the buttons side by side */
			}

			/* Clear floats (clearfix hack) */
			.btn-group:after {
				content: "";
				clear: both;
				display: table; 
			}

			.btn-group button:not(:last-child) {
				border-right: none; /* Prevent double borders */
			}

			/* Add a background color on hover */
			.btn-group button:hover {
				background-color: #3e8e41;
			}
		</style>
	</head>
	<body >
		<h1>按钮组</h1>

		<p>两个按钮组:</p>
		<div class="btn-group" style="width:100%">
		  <button style="width:50%">Apple</button>
		  <button style="width:50%">Sony</button>
		</div>

		<p>三个按钮组:</p>
		<div class="btn-group" style="width:100%">
		  <button style="width:33.3%">Apple</button>
		  <button style="width:33.3%">Samsung</button>
		  <button style="width:33.3%">Sony</button>
		</div>

		<p>四个按钮组:</p>
		<div class="btn-group" style="width:100%">
		  <button style="width:25%">Apple</button>
		  <button style="width:25%">Samsung</button>
		  <button style="width:25%">Sony</button>
		  <button style="width:25%">HTC</button>
		</div>
		
	</body>
</html>

猜你喜欢

转载自blog.csdn.net/lengyuezuixue/article/details/82154178
今日推荐