求助为什么我不能编辑那两个button
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title >无标题文档</ title > < style > *{margin:0;padding:0;} .container{ width:220px; height:350px; background:#ebf2fa; } .form_m{ padding:15px; } .input_text{ display:block; width:180px; height:28px; margin-top:12px; border-radius:4px;/*圆角矩形*/ text-indent:20px;/*文字缩进,需块元素或内联块元素*/ } p{ margin-top:10px; height:50px; font-size:13px; } p label{ vertical-align: top; } p a{ text-decoration:none; float:right; } } .btn{ width:200px; height:20px; background:url(http://img1.sycdn.imooc.com//539a972b00013e9102280177.jpg) } </ style > </ head > < body > < div class = "container" > < form class = "form_m" > < input class = "input_text" placeholder = "邮箱/手机号/用户名" type = "text" /> < input class = "input_text" placeholder ="请输入密码" type = "password" /> < p > < input class = "checkbox" type = "checkbox" id = "1" /> < label for = "1" >下次自动登陆</ label > < a href = "javascript:;" >忘记密码?</ a > </ p > < input class = "btn" type = "submit" value = "登陆" /> < hr /> < input class = "btn" type = "button" value = "注册" /> </ form > </ div > </ body > </ html > |
怎么改都没用