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 に答える