当两个标签的宽度通过javascript改变时,它们会自动改变位置

当两个标签的宽度通过javascript改变时,它们会自动改变位置,javascript,jquery,html,css,vb.net,Javascript,Jquery,Html,Css,Vb.net,我在锚定标签中有标签: <a href="#" runat="server" id="Anchor" class="class1"><span><asp:label ID="label1" runat="server" ForeColor="White" Font-Size="Smaller" Text=text1" > 通过一些CSS设置和ul li标记发布reslove您能否尝试提供仅显示问题的代码示例?删除不需要的代码将使人们更容易提供帮助。您的示

我在锚定标签中有标签:

<a href="#" runat="server" id="Anchor" class="class1"><span><asp:label ID="label1"   runat="server" ForeColor="White" Font-Size="Smaller" Text=text1" >

通过一些CSS设置和ul li标记发布reslove

您能否尝试提供仅显示问题的代码示例?删除不需要的代码将使人们更容易提供帮助。您的示例代码不完整(没有结束标记),请显示label2相对于label1的位置。
 .class1 
    {
    position: absolute;
    z-index: 4;
    top: 65px;
    right: 43.3%;
    /*left: 30.6%;*/
    -webkit-tap-highlight-color: transparent;

     }

     body.reversed .class1 {
        left: 8px;
        right: auto;
    }
    .fixed-title-bar > .class1 {
        position: fixed;
    }
    .class1 > span {
        padding: 0 8px 0 30px;
        background: url(../img/inout5.png) no-repeat 7px center;
        font-size: 16px;
        height: 27px;
        line-height: 27px;
    }

    .class1 > span {
        display: block;
        border: 1px solid #020203;
        color: white;
        -webkit-text-shadow: 0 -1px 0 black;
        -moz-text-shadow: 0 -1px 0 black;
        text-shadow: 0 -1px 0 black;
        background-color: #454545;
        background-color: rgba(255, 255, 255, 0.3);
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25);
        -webkit-background-clip: padding-box;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        width:56px;

    }