T
T
timtimIT2015-10-25 23:36:20
css
timtimIT, 2015-10-25 23:36:20

How to center a block without specifying the exact width?

Hello.
How to center a block without specifying the exact width?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Goryachev, 2015-10-25
@timtimIT

Either like this:

.block {
   width: 80%;
   margin: auto;
}

either like this:
body {
   text-align: center;
}
.block {
   display: inline-block;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question