CSS-Position Absolute

Absolute font-size

by JSDavi

HTML

<div class="mobile-row">
					<div class="mobile-home-title">D.C. United</div>
					<div class="mobile-away-title">New York Red Bulls</div>
					<div class="mobile-title-tag">@ABCDEAFDS</div>
				</div>

CSS

.mobile-row {
	width:100%;
	height: 165px;
	background-color: lightgray;
	position: relative;
	font-size: 0;
}
.mobile-home-title,
.mobile-away-title {
	width: 50%;
    height: 62px;
    line-height: 62px;
    display: inline-block;
    font-size: 16px;
}
.mobile-title-tag {
	position: absolute;
	width: 100%;
	height: 40px;
	bottom: 2px;
	right: 0;
	background-color: red;
}