Home >Web Front-end >HTML Tutorial >css position:absolute 水平垂直居中对齐

css position:absolute 水平垂直居中对齐

WBOY
WBOYOriginal
2016-06-01 09:53:313386browse

此实例将div元素相对屏幕居中,css代码如下:

<code>.class{
    position: absolute;
    left: 50%;
    width: 980px;
    margin-left: -490px;
    text-algin:center
}</code>

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