Home > Web Front-end > HTML Tutorial > Why does the layout become misaligned when a tag is added_html/css_WEB-ITnose

Why does the layout become misaligned when a tag is added_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:08:56
Original
1719 people have browsed it

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN"><head><title>测试a标签</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="description" content="" /><meta name="keywords" content="" /><style type="text/css">* {    margin:0;    padding:0;    border:0;}#container {    width:990px;    height:370px;    margin:auto;}#hot {    width:990px;    height:370px;    background:blue;}#ad {    float:left;    width:330px;    height:370px;}#exceting {    float:left;    width:391px;    height:370px;}#right-bar {    float:right;    width:250px;    width:370px;}</style></head>    <body>        <div id="container">            <div id="hot">                    <div id="ad">                        <a id="ad-a" href="#"><a>                    </div>                    <div id="exceting">                        <div id="cell1"><a href="#">ww</a></div>                        <div id="cell2">ss</div>                    </div>                    <div id="right-bar">                        <div id="right-top">                                                    </div>                        <div id="right-bottom"></div>                    </div>            </div>        </div>    </body></html>
Copy after login

As long as you add ww, the layout will immediately become misaligned. I have been looking for it for a long time. I hope an expert can help me out! ! ! < a id="ad-a" href="#">
This a closing tag is not added /

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template