A
A
Alex15642020-08-10 15:31:57
css
Alex1564, 2020-08-10 15:31:57

How to write text on photo in css?

Please tell me how to write text on the photo?5f313e393371e255146131.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
T
ThunderCat, 2020-08-10
@ThunderCat

Div, background photo in diva, text in diva. If, as in the screenshot, it is enough to set the background color, the picture is not needed.

A
approximate solution, 2020-08-10
@approximate_solution

div.wrapper
   image
   text

.wrapper {
position: relative;
}

.text {
position: absolute;
left: 50%;
top: 50%
transform: translate(-50%, -50%);
}

An image can be darkened by adding an overlay on top of it, setting z-index: 1 for the overlay, and z-index: 2 for text;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question