纯css实现选项卡效果

用css实现选项卡效果,需要用到label标签,label标签不会呈现任何效果,当点击label时,浏览器会自动将焦点转到和标签相关的表单控件上。
标签的for属性相当于其他元素的id属性,checked.checked 属性规定在页面加载时应该被预先选定的input元素。

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

	<head>
		<meta charset="UTF-8">
		<title>css实现选项卡</title>
		<style>
			* {
				padding: 0;
				margin: 0;
			}
			form {
				width: 600px;
				height: 460px;
				background: #33344a;
				margin: 200px auto;
				border: 1px solid green;
				padding: 10px;
			}
			
			input {
				display: none;
			}
			
			input+i {
				font-style: normal;
				width: 100px;
				height: 60px;
				text-align: center;
				line-height: 60px;
				display: inline-block;
				color: antiquewhite;
			}
			
			input:checked+i {
				background: #e74c3c;
				color: lawngreen;
			}
			
			input+i+span {
				display: none;
			}
			
			input:checked+i+span {
				width: 600px;
				height: 400px;
				display: block;
				background: white;
				position: absolute;
			
			}
		</style>
	</head>

	<body>
		<form>
			<label><input type="radio" name="nn" checked="checked"><i>WEB</i><span>讲师:旺旺</span></label>
			<label><input type="radio" name="nn"><i>UI</i><span>讲师:辉哥</span></label>
			<label><input type="radio" name="nn"><i>PHP</i><span>讲师:晴姐</span></label>
			<label><input type="radio" name="nn"><i>英才</i><span>大虎</span></label>
		</form>
	</body>

以上代码为整体格式,如有建议请联系小编。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值