静态元素以html为基准偏移 为什么我将html和body都设置一个border和margin样式,里面的块元素是挨着body的边框而不是html的边框呢?<!DOCTYPE HTML><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>制作我的第一个网页</title> <style> html{border:5px green solid;background:blue;padding:0;margin:10px;}body{border:red 1px solid;margin:10px;background:yellow;} div{width:500px;height:400px;border:purple 2px dashed;margin:0;padding:0;} </style> </head> <body> <div>Hello World</div> </body></html>
添加回答
举报
0/150
提交
取消