SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
	<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
	<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>


<div class="panel-group" id="accordion">
	<div class="panel panel-default">
		<div class="panel-heading">
			<h4 class="panel-title" >
				<a data-toggle="collapse" data-parent="#accordion" 
				   href="#collapseOne">
                   This is panel header 1
				</a>
			</h4>
		</div>
		<div id="collapseOne" class="panel-collapse collapse in" style="border: 5px double rgb(43, 226, 171);">
			<div class="panel-body" style="border: 3px dotted rgb(245, 41, 184);">
                A dog is a type of domesticated animal. Known for 
                its loyalty and faithfulness, <br>it can be found as 
                a welcome guest in many households across the world.
			</div>
		</div>
	</div>
	<div class="panel panel-default">
		<div class="panel-heading">
			<h4 class="panel-title">
				<a data-toggle="collapse" data-parent="#accordion" 
				   href="#collapseTwo">
                   This is panel header 2
				</a>
			</h4>
		</div>
		<div id="collapseTwo" class="panel-collapse collapse" style="border: 5px double blueviolet;">
			<div class="panel-body"  style="border: 3px dotted rgb(58, 226, 43);">
				A dog is a type of domesticated animal. Known for 
                its loyalty and faithfulness, <br>it can be found as 
                a welcome guest in many households across the world.
			</div>
		</div>
	</div>
	<div class="panel panel-default">
		<div class="panel-heading">
			<h4 class="panel-title">
				<a data-toggle="collapse" data-parent="#accordion" 
				   href="#collapseThree">
                   This is panel header 3
				</a>
			</h4>
		</div>
		<div id="collapseThree" class="panel-collapse collapse" style="border: 5px double rgb(234, 250, 6);">
			<div class="panel-body" style="border: 3px dotted rgb(27, 153, 238);">
				A dog is a type of domesticated animal. Known for 
                its loyalty and faithfulness, <br>it can be found as 
                a welcome guest in many households across the world.
			</div>
		</div>
	</div>
</div>

</body>
</html>