0

是否可以在下面的脚本中居中投票按钮?

   <script type="text/javascript" charset="utf-8" src="http://static.polldaddy.com/p/6352993.js"></script>
    <noscript><a href="http://polldaddy.com/poll/6352993/">This is very long test question to test how polldaddy handles questions that exceed that normal length............ yes a very long question indeed..............</a></noscript>​

该按钮的样式为类:'pds-vote-button'

这是一个小提琴:http: //jsfiddle.net/25LjE/8/

4

2 回答 2

0

通过使用 JQUERY:

$('.pds-votebutton-outer').css('text-align','center');

使用 JQUERY 的演示 http://jsfiddle.net/rathoreahsan/25LjE/29/

或通过使用 CSS:

.pds-votebutton-outer {
    text-align:center;
}

使用 CSS 进行演示 http://jsfiddle.net/rathoreahsan/25LjE/33/

于 2012-07-05T10:39:34.127 回答
0

你可以试试

$('#example td:nth-col(1)').textAlign(',');

您的班级将替换为指定的 id。

于 2012-07-05T10:49:14.683 回答