在下面的脚本中:

<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>​


我修改了文字的宽度,使其适合220px。如果文本具有一定长度,则这将使文本环绕在单选按钮下面。如该小提琴所示:

http://jsfiddle.net/25LjE/8/

选项应环绕在单选按钮的右侧,如图所示:



这可能吗 ?我认为我需要修改“ pds-answer-span”类吗?

最佳答案

在CSS面板上添加此样式

.pds-input-label { width: 85% !important }
.pds-input-label, .pds-answer-input { float: left;  }
.pds-answer-group { height: auto; overflow: hidden; /* float clearing */ }


您达到预期的效果

07-28 05:43