0
我有一個div(作爲測試網站的'標題'),但我總是得到一個小的邊距左右,即使我的寬度設置爲100%。整頁寬div
CSS:
.humpty {
background-color: pink;
text-align: center;
font-family: "Helvetica Neue";
color: gray;
font-size: 30px;
font-weight: lighter;
width: 100%;*/
padding-top: 1px;
padding-bottom: 1px;
margin: 0 -9999rem;
padding: 0.25rem 9999rem;
}
HTML:
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="main.css">
<title>Test Site</title>
</head>
<body>
<div class="humpty">
Main Title for this Page entirely
</div>
大多是因爲體內的填充,嘗試添加這對你的CSS'身體{填充:0;保證金:0}' –