21 lines
299 B
CSS
21 lines
299 B
CSS
button {
|
|
background:red;
|
|
font-size:20px;
|
|
color:white;
|
|
border:0;
|
|
cursor:pointer;
|
|
}
|
|
|
|
.box {
|
|
font-size:40px;
|
|
border:10px solid black;
|
|
width:200px;
|
|
line-height:100px;
|
|
height:100px;
|
|
display:inline-block;
|
|
vertical-align:top;
|
|
text-align:center;
|
|
margin:5px;
|
|
overflow:hidden;
|
|
}
|