gpt4 book ai didi

javascript - 为什么谷歌控制台报告 的意外像素大小

转载 作者:太空宇宙 更新时间:2023-11-04 03:45:18 25 4
gpt4 key购买 nike

我正在关注 Head First 的 Javascript 书中的代码,我注意到我的 google 控制台中有些令人不安的地方。如果我在元素部分的控制台中向下钻取,当我突出显示一个标签时,浏览器告诉我它是 96 而不是 94 像素!太让人抓狂了,我不知道为什么 :(

顺便说一句,资源和代码可以在以下地址下载:code download

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Battleship</title>
<style>
body
{
background-color: black;
}

div#board
{
position: relative;
width: 1024px;
height: 863px;
margin: auto;
background: url("board.jpg") no-repeat;
}
div#messageArea
{
position: absolute;
top: 0px;
left: 0px;
color: rgb(83, 175, 19);
}
table
{
position: absolute;
left: 173px;
top: 98px;
border-spacing: 0px;
}
td
{
width: 94px;
height: 94px;
}
form
{
position: absolute;
bottom: 0px;
right: 0px;
padding: 15px;
background-color: rgb(83, 175, 19);
}
form input
{
background-color: rgb(152, 207, 113);
border-color: rgb(83, 175, 19);
font-size: 1em;
}
.hit
{
background: url("ship.png") no-repeat center center;
}
.miss
{
background: url("miss.png") no-repeat center center;
}


</style>
</head>
<body>
<div id="board">
<div id="messageArea"></div>
<table>
<tr>
<td id="00"></td> <td id="01"></td> <td id="02"></td> <td id="03"></td>
<td id="04"></td> <td id="05"></td> <td id="06"></td>
</tr>
<tr>
<td id="10"></td> <td id="11"></td> <td id="12"></td> <td id="13"></td>
<td id="14"></td> <td id="15"></td> <td id="16"></td>
</tr>
<tr>
<td id="20"></td> <td id="21"></td> <td id="22"></td> <td id="23"></td>
<td id="24"></td> <td id="25"></td> <td id="26"></td>
</tr>
<tr>
<td id="30"></td> <td id="31"></td> <td id="32"></td> <td id="33"></td>
<td id="34"></td> <td id="35"></td> <td id="36"></td>
</tr>
<tr>
<td id="40"></td> <td id="41"></td> <td id="42"></td> <td id="43"></td>
<td id="44"></td> <td id="45"></td> <td id="46"></td>
</tr>
<tr>
<td id="50"></td> <td id="51"></td> <td id="52"></td> <td id="53"></td>
<td id="54"></td> <td id="55"></td> <td id="56"></td>
</tr>
<tr>
<td id="60"></td> <td id="61"></td> <td id="62"></td> <td id="63"></td>
<td id="64"></td> <td id="65"></td> <td id="66"></td>
</tr>
</table>
<form>
<input type="text" id="guessInput" placeholder="A0">
<input type="button" id="fireButton" value="Fire!">
</form>
</div>
<script src="battleship.js"></script>
</body>
</head>

最佳答案

改变这个:

td {
width : 94px;
height : 94px;
}

为此:

td {
width : 94px;
height : 94px;
padding : 0;
}

演示:http://jsfiddle.net/seancannon/daLbQ/

关于javascript - 为什么谷歌控制台报告 <td> 的意外像素大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24235663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com