January 21, 2017
2 columns
Description:
Kind:
CSS, HTML
CSS:
.links p,
.rechts p {
font-size: 0.7rem;
font-weight: 500;
color: rgb(0,0,0);
color: rgba(0,0,0,0.7);
}
.rechts h3,
.links h3 {
display: inline-block;
border-bottom: 2px solid #ff8c00;
font-weight: 500;
}
.links {
width: 45%;
float: left;
/*padding: 0 0 0 2rem;*/
}
.rechts {
width: 45%;
float: right;
/*padding: 0 0 0 2rem;*/
}
HTML:
<div class="links">
<h3>...</h3>
<p>. . . . .</p>
</div>
<div class="rechts">
<h3>...</h3>
<p>. . . . .</p>
</div>