Вопрос

What is the significant differences between using CSS to center something on a page, rather than the tags?

Will affect page layout, compatibility etc?

Much Thanks.

Это было полезно?

Решение

The <center> tag has been deprecated in HTML4 (and XHTML1) in favor of the CSS text-align property, which can be applied to the <div> element or to an individual <p>.

For more info: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center

It is always better to separate the "code" (HTML) and the styles (CSS), so in any case, CSS is the way to go.

Другие советы

To be short, just don't use center tag. Let it go into oblivion together with marquee.

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center

<center> is an HTML tag, which is now depreciated

It's beter to use CSS prepriety instead: it's because it's better to isolate the structure (HTML) and design (CSS)

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top