我正在练习CSS而且我无法为回复表单添加输入和textarea标记。
<form action="" method="">
<input style="width: 50%;" type="text" class="" name="message_name" placeholder=" Your Name">
<br>
<textarea rows="3" cols="5" style="width: 50%;" name="message_comment" class="" placeholder=" Message"></textarea>
</form>
答案 0 :(得分:0)
我不确定我是否理解你的问题。
<form action="" method="">
<input style="width: 50%; margin-bottom:10px;" type="text" class="" name="message_name" placeholder=" Your Name">
<br>
<textarea rows="3" cols="5" style="width: 50%;" name="message_comment" class="" placeholder=" Message"></textarea>
</form>