x
 
<!DOCTYPE html>
<html>
<head>
<style>
body {
  margin: 0;
}
* {
  box-sizing: border-box;
} 
input, textarea {
  width: 100%;
}
</style>
</head>
<body>
<form action="/action_page.php">
  First name:<br>
  <input type="text" name="firstname" value="Mickey"><br>
  Last name:<br>
  <input type="text" name="lastname" value="Mouse"><br>
  Comments:<br>
  <textarea name="message" rows="5" cols="30">
  


提示:请尝试从 style 元素中删除 box-sizing 属性,然后看看会发生什么。请注意,input、textarea 和提交按钮的宽度将超出屏幕范围。