-1

当我重新调整窗口大小时,我在调整浏览器窗口大小时遇到​​问题客户登录按钮不在正文中

如何解决这个问题我已经给了余地这就是问题

<div class="inner clearfix" style="margin-left: 1000px;">
 <div class="logo">
 <a href="" class="customerLogin"> Customer Login </a> 
</div> 
</div>

http://jsfiddle.net/48y2Q/1/embedded/result/ http://jsfiddle.net/48y2Q/1/

4

2 回答 2

1

你给了它一个固定的边距:

margin-left: 1000px;

所以它总是从左边1000px。将其更改为以下内容,例如:

float: right;
于 2013-01-03T01:33:49.993 回答
0

您可以这样做以使其与右侧对齐:

<div style="margin-right: 50px; text-align: right;" class="inner clearfix">
    <div class="logo">
    <a class="customerLogin" href="">     
        Customer Login
    </a>
    </div>
</div>
于 2013-01-03T01:39:35.860 回答