abstract:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> body{font-size: 16p
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
body{font-size: 16px;}
*{padding: 0px;margin: 0px;}
#header{width: 500px;height: 400px;border: 1px solid pink;margin: 60px auto;font-size:12px;font-weight: 8px; }
#header_frist{width: 450px;height: 30px;border: none;margin: 0px auto;}
#img{float: left;}
#header_next,#header_next{clear: both;}
div span[name="name"]{font-size: 16px;font-weight: bold;margin-top: 19px;display: inline-block;}
.header_last{width: 100%;border: 1px solid #ccc;box-shadow: 0px 0px 0px #6A5ACD;}
.p1{height: 25px; }
form{float: right;display: block-line;width: 270px}
form input[name="change"]{visibility:hidden;outline: none;}
</style>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('form>input').css('margin-bottom','10px');
$('form>select').css('margin-bottom','10px');
$('form input').css('backgroundColor','pink');
$(".but").focus(function(){
$(".change").css('visibility','none');
return true;
})
})
</script>
</head>
<body>
<div id="header">
<div id="header_frist">
<img src="137z46.gif" id="img">
<span name="name">灭绝老师声音真好听</span>
</div>
<div id="header_next"></div>
<div></div>
<img src="2.jpg" id="img" style="display:block-line;width: 230px;">
<form>
姓 名:<input type="text" value="大家好我是">
<input type="button" value="修改">
电话号码:<input type="text" value="15215044444">
<input type="button" value="修改">
爱 好:
<select>
<option>吃鱼</option>
<option>吃虾</option>
<option>吃鸡</option>
</select><br>
<input type="button" value="确定提交">
</form>
<div id="header_next1"></div>
</div>
</body>
</html>