Есть все в документации. Важно понимать про позиционирование и работу
relative и
absolute. Пример расположения текста по четырем углам и по центру.
Стили:
.container {
position: relative;
text-align: center;
color: white;
}
.bottom-left {
position: absolute;
bottom: 8px;
left: 16px;
}
.top-left {
position: absolute;
top: 8px;
left: 16px;
}
.top-right {
position: absolute;
top: 8px;
right: 16px;
}
.bottom-right {
position: absolute;
bottom: 8px;
right: 16px;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
HTML:
<div class="container">
<img src="imgage.jpg" style="width:100%;">
<div class="bottom-left">Низ, слева</div>
<div class="top-left">Верх, слева</div>
<div class="top-right">Верх, справа</div>
<div class="bottom-right">Низ, справа</div>
<div class="centered">По центру</div>
</div>