Home  >  Article  >  Web Front-end  >  CSS 居中 可随着浏览器变大变小而居中_html/css_WEB-ITnose

CSS 居中 可随着浏览器变大变小而居中_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:071209browse

关键代码:

外部DIV使用: text-align:center;

内部DIV使用: margin-left:auto;margin-right:auto

例:

<div style="text-align: center">    <div style="margin-left: auto;margin-right: auto;">        <fieldset>            <legend>居中</legend>        </fieldset>    </div></div>

  

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn