同一个div的不同设计的浏览器

时间:2013-09-20 10:11:18

标签: css html styles

我有几个不同的问题。

我有一个div,其中有几个其他div和一些控件。我最大的问题是它在Chrome中看起来与在其他浏览器中看起来不一样。就像现在一样,它看起来如下: Properties box in different browsers

最大的问题是Chrome,“width:”文本右侧的文本框会显示在下一行。该框的代码可以在this JSFiddle中看到,或者如下所示:

<div id="div_properties" class="redBorder left" style="clear: left; display: 
    <div class="right">
        <a href="#" id="closePropertiesWindow">
        <img src="close.png" title="Close window"></a>
    </div>
    <div class="centered noMargin whiteBackground">
        <h3 class="noMargin">Properties</h3>
    </div>
    <hr class="noMargin noPadding">

    <div id="div_properties_content" style="display: block;">
        <div class="noMargin propertiesControl" prop="text" style="width:100%;">
            text: 
            <input type="text" id="propertytextTextBox" class="right"></input> 
        </div>
        <div class="noMargin propertiesControl" prop="width" style="width:100%;">
            width: 
            <input type="number" id="propertywidthNumber" class="right"></input> 
        </div>
        <div class="noMargin propertiesControl" prop="italic" style="width:100%;">
            italic: 
            <input type="checkbox" id="propertyitalicCheckBox" class="right" checked="checked"> 
        </div>
        <div class="noMargin propertiesControl" prop="bold" style="width:100%;">
            bold: 
            <input type="checkbox" id="propertyboldCheckBox" class="right"> 
        </div>
        <br>
        <input type="button" id="savePropertiesButton" value="Save" class="right">
    </div>
</div>

CSS如下:

#div_properties {
    margin-top: 5px;
    background-color: #F0F0F0;
    width: 300px;
    float: left;
    min-height: 75px;
}

.redBorder {
    border: 1px solid red;
}

.noMargin {
     margin: 0 0 0 0;
}

.left {
    float: left;
 }

 .right {
      float: right;
 }

(这些是此范围内的所有相关类,项目上定义的其他类没有样式,但在JavaScript中使用。)

另外,我遇​​到的另一个问题是IE中关闭图像周围的“框边框”。这不是一个大问题,但如果有人知道是什么导致它,那将是太棒了。

1 个答案:

答案 0 :(得分:2)

导致问题的浮动。你需要清除它们。

.propertiesControl {
    clear:both;
}

http://jsfiddle.net/JWDkM/2/