我想用white-space
CSS屬性在HTML textarea
。css在textarea中的空白屬性?
基本上,如果有人類型的textarea
一堆換行文本,然後提交這一數據被存儲在MySQL中,我想用white-space
CSS屬性顯示在文本區域的換行符。但是,當我嘗試它時,它不工作,只是在一個大段落中顯示文本,沒有任何休息或任何東西。有沒有辦法做到這一點?
<form action="includes/changebio.php" method="post" id="form1">
<textarea id="bio" style="width: 440px;
margin-top:3px;
text-align:left;
margin-left:-2px;
height: 120px;
resize: none;
outline:none;
overflow:scroll;
**white-space:pre-line;**
border: #ccc 1px solid;" textarea name="bio" data-id="bio" maxlength="710" placeholder="<?php echo stripslashes($profile['bio']); ?>"></textarea>
<input type="image" src="assets/img/icons/save-edit.png"class="bio-submit" name="submit" value="submit" id="submit"/>
</form>
這是什麼「它」是「顯示文本都聚集在一名大段」?這聽起來像你的問題出現在提交的用戶輸入的*處理中,而不是'textarea'元素的樣式。如示例代碼所示,該元素沒有內容。 –