27 lines
419 B
CSS
27 lines
419 B
CSS
article {
|
|
background-color: #212529;
|
|
margin: 0 0 30px;
|
|
padding: 10px 10px 10px;
|
|
border-radius: 5px;
|
|
display: block;
|
|
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
article h2 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
article a {
|
|
/* display: inline-block;
|
|
width:100%;
|
|
height: 100%; */
|
|
box-sizing: border-box;
|
|
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|