习惯受伤
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="styles/layout.css" />
<style type="text/css">
*{margin:0;padding:0;}
body { background:#DFB988; }
div.search { width:465px; height:60px; position:relative; overflow:hidden; margin:50px; }
div.search input[type="text"]{ width:310px; height:58px; line-height:58px; text-indent:10px; font-size:18px; border:1px solid #333;}
div.search input[type="submit"]{position:absolute; right:0;top:0; width:115px; height:60px; border:1px solid #333; font-size:20px; }
</style>
</head>
<body>
<div class="search">
<input type="text" placeholder="输入关键字搜索" />
<input type="submit" value="搜索" />
</div>
</body>
</html>