首页htmllinePage Widget - 如何hr,没有空间

Page Widget - 如何hr,没有空间

我们想知道如何hr,没有空间。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
p {
  margin: 0;
  padding: 0;
  background: #eee;
}

hr {
  border-top: 1px solid #000;
  padding: 0;
  margin: 0;
  font-size: 0;
  display: block;
  height: 0;
  line-height: 0;
  background: #f00;
  color: #f00;
}

hr {
  margin: -7px 0!ie7;
}
</style>
</head>
<body>
  <p>text here</p>
  <hr>
  <p>some more text</p>
</body>
</html>