Home >Web Front-end >HTML Tutorial >Is the right side of css running around? _html/css_WEB-ITnose

Is the right side of css running around? _html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:55:47947browse

CSS code:

a {color:#252525; text-decoration:none;}a:visited {text-decoration:none;}a:hover {color:#ba2636;text-decoration:underline;}a:active {color:#ba2636;}.bigBox {margin: 0 auto; width: 850px;margin:auto;clear:both;}.left {padding:5px; float: left; width:65%;background:#FFF;height:300px;margin:auto;border-radius: 5px;border:1px solid #e1e2e3;clear:both;}.right {clear:both;float: right; width: 32%;background:#F7f7f7;height:300px;margin:0px;padding:0px;word-break:break-all;}.div_right{padding:5px;}


<div class="clear"></div><div class="bigBox clearfix">    <div class="left">左边</div>    <div class="right"><div class="div_right">如何在右边?如何在右边?如何在右边?如何在右边?如何在右边?如何在右边?如何在右边?如何在右边?</div></div></div><div class="foot"></div>


******** Is this the result? ***********




How can I adjust the right one to be parallel to the left one? Thanks.


Reply to discussion (solution)

clear:both; Remove
.right {
float: right; width: 32%;
background:#F7f7f7;
height:300px;
margin:0px;
padding:0px;
word-break:break-all;

}

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