我想white-space
在 HTML 中使用 CSS 属性textarea
。
基本上,如果有人在 a 中键入一堆带有换行符的文本textarea
,然后将此数据提交存储在 MySQL 中,我想使用white-space
CSS 属性在 textarea 中显示这些换行符。但是当我尝试它时,它不起作用,只是将文本全部显示在一个大段落中,没有任何中断或任何东西。有没有办法做到这一点?
<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>