如何正确对齐这些项目?

时间:2015-10-30 12:50:02

标签: css

我目前正在开发一个包含一些jQuery-UI滑块的网页,但我无法正确调整所有内容。

HTML:

            $('.edit').click(function()
            {
            $('input[name=section_pop_others]').removeAttr("disabled");
            });

            $('.cancel').click(function()
            {
            $('input[name=section_pop_others]').attr("disabled","disabled");
            });

CSS:

    <div class="row">
        <div id="hue"><img src="download.png" class="hue" /></div>
        <div id="mixedColor"></div>
    </div>
    <div class="rowVert">
        <div class="vert" id="CSVhue"></div>
        <div class="vert" id="CSVsat"></div>
        <div class="vert" id="CSVbright"></div>
    </div>

但没有任何成功。

这是一个JSFiddle:http://jsfiddle.net/npL866zz/1/

我多么想要: How I want it

请注意我的网页针对IE7进行了优化,因此必须针对这一个浏览器优化所有命令。

1 个答案:

答案 0 :(得分:1)

这是你可以使用的东西

Fiddle demo

#hue {
    margin-top: 50px;
    margin-right: 110px;
    overflow: hidden;
}
.hue {
    height: 17px;
    width: 100%;
}
#mixedColor {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 100px;
    height: 100px;
    border: 1px solid black;
}
.rowVert {
    padding-top: 40px;
    padding-right: 110px;
    padding-left: 20%;
}
.vert {
    float: left;
    margin-left: 14%;
    width: 15px;
    height: 100px;
}