Hi,
We have some html source like this:
<div class="survey">
<form action="student s/cbe-graduate-students/survey.html"
method="post" id="frmPbSurvey ">
<fieldset class="survey_i tem">
<legend class="question "><span class="question Number">6.</span>If the
answer to question 11 is yes, do you think they provide adequate
services for advanced degree employment opportunities?</legend>
<input type="radio" name="tx_pbsurv ey_pi1[7][0][0]" value="1" /
<input type="radio" name="tx_pbsurv ey_pi1[7][0][0]" value="2" /
</fieldset>
....
<fieldset ...>
</fieldset>
</form>
</div>
Some questions are pretty long and cannot fit in the layout. My
current style sheet has,
..survey div {margin-bottom: 10px;}
..survey_item {margin-top: 10px; margin-bottom: 10px;}
..question {font-size: 100%; font-weight: bold; }
What should I so long questions can be broken into multiple lines to
fit in the layout that has 450px width?
Thanks in advance for any help,
Bing
We have some html source like this:
<div class="survey">
<form action="student s/cbe-graduate-students/survey.html"
method="post" id="frmPbSurvey ">
<fieldset class="survey_i tem">
<legend class="question "><span class="question Number">6.</span>If the
answer to question 11 is yes, do you think they provide adequate
services for advanced degree employment opportunities?</legend>
<input type="radio" name="tx_pbsurv ey_pi1[7][0][0]" value="1" /
>No<br />
>Yes<br />
....
<fieldset ...>
</fieldset>
</form>
</div>
Some questions are pretty long and cannot fit in the layout. My
current style sheet has,
..survey div {margin-bottom: 10px;}
..survey_item {margin-top: 10px; margin-bottom: 10px;}
..question {font-size: 100%; font-weight: bold; }
What should I so long questions can be broken into multiple lines to
fit in the layout that has 450px width?
Thanks in advance for any help,
Bing
Comment