SOURCE

console 命令行工具 X clear

                    
>
console
		 <style type="text/css">
					* {  /*修改盒子模型计算方式*/
						-webkit-box-sizing: border-box;
							 -moz-box-sizing: border-box;
										box-sizing: border-box;
					}
				 .button{
							position: relative;
							height: 200px;
							width: 400px;
							margin: 50px;
							padding:10px; 
							border:solid 1px black; 
					}
					.button-text{ /*按钮文本*/
							background-color: rgb(242, 13, 13); 
							height: 44px;
							line-height: 44px;
							min-width: 320px;
						  border-radius:44px;
							text-align: center;
							color: #fff;  
							background-color: red; 
					}
		 </style>

			<div class="button">
					<div class="button-text">一个按钮背后的故事</div>
			</div>