2017-01-30 54 views
-1

我似乎無法將第一行下方的文本對齊。請參閱link頁右側綠色「發送」按鈕上方的文字。我曾嘗試顯示:margin-left:15px僅適用於第一行文本,但其餘顯示不同。將margin-left應用於html輸入按鈕的所有文本行

+0

首先,請去閱讀[問]。相關代碼屬於您的問題,而不僅僅是在外部網站上。 – CBroe

回答

0

margin-left: 15px;作品完美的我,你在網站上張貼.. 只是包裝你想在例如一個div移動內容:保證金DIV並給DIV margin-left: 15px;

0

我認爲你需要使用網格例如像引導程序。並將您的輸入(複選框)從文本中分離出來。自舉示例:

<div class="row"> 
    <div class="col-xs-2">your checkbox</div> 
    <div class="col-xs-10">Your text</div> 
</div> 

您不必使用Bootsrap,而是使用類似的網格系統。

希望能幫到你:)

0

這應該這樣做。

.control-group.checkbox { 
    padding-left: 20px; 
} 

.control-group.checkbox > input { 
    margin-left: -23px; 
} 

這將整個.control-group向右移動,但將恢復它的input元素。

0

如果您希望應用對齊方式,則應將您的文本放在<span></span><p></p>中,並給style="text-align:right;"

在另一方面,如果你說你想在一個縮進文本(即,不是文字複選框下方),然後創建一個表有

  <table> 
       <tr> 
        <td> 
         <input type="checkbox" /> 
        </td> 
        <td> 
         <p>I agree to the terms of the privacy policy of APIS Informationstechnologien GmbH to have my data stored and processed for the purposes of initiating business and improving customer service. My data will not be provided to third parties. At any time, I can disagree with APIS Informationstechnologien GmbH using the data.</p> 
        </td> 
       </tr> 
      </table>