E
E
Evgenij_nechujveter2018-03-06 15:42:13
css
Evgenij_nechujveter, 2018-03-06 15:42:13

Why is the block not centered?

Why is the block not centered?

<div class="container">
<div class="block1"><img src="images/1234 Custom.png" width="250"; height="350"; alt=""></div>
<div class="block1"><span>Деревянно-алюминиевые окна
Цена от 83 600 руб за м2.</span></div>
</div>

.container {
width: 270px;
text-align: center;
}

.block1 {
  width: 250px;
  text-align: center;
}

I want to center this block:
5a9e8d6d801dd156173218.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Dymok, 2018-03-06
@Evgenij_nechujveter

.container {
width: 270px;
text-align: center;
margin: 0 auto;
}

K
Koreetz Koreetz, 2018-03-06
@shnopik87

Everything you wrote in the comments above is correct.
`text-align: center;` - usually used for text.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question