2014-04-23 6 views
0

아래는 내 CheckboxList입니다. 확인란 아래에 텍스트가 표시됩니다.CheckboxList 항목 텍스트 CSS

텍스트를 어떻게 배치 할 수 있습니까? 여기에 체크 박스가 인라인 요소이기 때문에, 당신은 또한 인라인 요소 인 <span> 요소에 텍스트를 래핑 할 수 내보기 소스 코드

<tr> 
      <td><input id="ContentPlaceHolder1_cblReason_16" type="checkbox" name="ctl00$ContentPlaceHolder1$cblReason$16" value="02. Form of product order/purchase (POS with immediate delivery, POS with delayed delivery, Mail order, Phone order, Internet order)" /><label for="ContentPlaceHolder1_cblReason_16">02. Form of product order/purchase (POS with immediate delivery, POS with delayed delivery, Mail order, Phone order, Internet order)</label></td> 
     </tr> 




<tr> 
    <td style="text-align: left;" colspan="2"> 
    <asp:CheckBoxList ID="cblReason" runat="server" RepeatColumns="1" TextAlign="Right"> 
    <asp:ListItem>01. Two years of financial statements</asp:ListItem> 
    <asp:ListItem>02. Form of product order/purchase (POS with immediate delivery, POS with delayed delivery, Mail order, Phone order, Internet order)</asp:ListItem> 
    <asp:ListItem>03. Delivery timeframe. If product delivery is not immediate, outline average timeframe between initial product purchase and delivery of product. If services are purchased, outline average timeframe between initial order and complete provision of Service.      </asp:ListItem> 
</asp:CheckBoxList> 
+0

당신이 렌더링 된 HTML을 게시 할 수 있습니다 : 예를 들어

? – j08691

+0

안녕하세요. 이미지가 있지만 새로 업로드 할 때 이미지를 업로드 할 수 없습니다. – Bingit

+0

이미지를 게시 할 필요가 없으며 브라우저에 HTML 만 렌더링됩니다. – j08691

답변

0

입니다.

<input type="checkbox" /><span>Label</span>

+0

안녕하세요, 나는 당신을 얻지 못했습니다. 정교하게 주시겠습니까? – Bingit