CSS-GroupBox简单实现

GroupBox实现方式内容

<style><!--
.groupbox
	{margin:10px;
	width:500px;
	height:500px;
	border:thin solid black;
	padding:10px}
.grouptitle
	{display:block;
	margin-top:-24px;
	margin-left:20px;
	width:150px;
	text-align:center;
	background-color:white}
--></style>
<div class="groupbox">
	<span class="grouptitle">GroupBox实现方式</span>
</div>


上面的代码很简单

你可能感兴趣的:(CSS-GroupBox简单实现)