jquery对齐进度条

时间:2011-07-20 08:42:25

标签: jquery html progress-bar alignment

这是我的情况:

HTML

<p>Controlla mail</p>
<div class="progressbar"></div>

JS

jQuery(function($) {
    $(".progressbar").progressbar({ value: 10 });
});

http://jsfiddle.net/michelejs/SByqS/

如何将进度条与支票邮件文本对齐?

3 个答案:

答案 0 :(得分:3)

此处:DEMO JSFiddle

或仅使用jQuery:

DEMO2

jQuery(function($) {
    $(".progressbar").progressbar({
        value: 10
    }).css({marginLeft:'100px'}).prev('p').css({float:'left', lineHeight:'34px'});

});

答案 1 :(得分:0)

尝试http://jsfiddle.net/mraufk/4K8X2/1/

jQuery(function($) {
    $(".progressbar").progressbar({ value: 10 });
    $(".progressbar").css('width', '85px'); 
});

答案 2 :(得分:0)

以下是代码:

  

jQuery(function($){

     

$(“。progressbar”)。progressbar({value:10});

     

$(“。progressbar”)。css('margin-left','90px');

     

$( 'P')的CSS( '浮动', '左');

     

});