D
D
Dmitry2018-03-01 19:14:46
css
Dmitry, 2018-03-01 19:14:46

How to align a list to the center?

I'm trying to align to the center of the page, and the numbers fly off to the left
5a98265c94b10798110851.png

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title>Задание 5</title>
 </head>
<body>
<p align="center"><strong><font color="blue">Расписание уроков</font></strong></p>
<ol>
<li>Математика</li>
<li>Физика</li>
<li>Химия</li>
<li>История</li>
<li>Информатика</li>
</ol>
</body>
</html>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
David Halkin, 2018-03-01
@Tobascys

<ol style="display: table; margin:0 auto;">
    <li>Математика</li>
    <li>Физика</li>
    <li>Химия</li>
    <li>История</li>
    <li>Информатика</li>
  </ol>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question