gpt4 book ai didi

css 框不适合正确

转载 作者:行者123 更新时间:2023-11-28 12:56:03 24 4
gpt4 key购买 nike

我确实有这段 html 和 css 代码,我希望我的表(id =“表”)在“盒子”中的位置更高。但是标题上有一点空白,上面写着“Kalkulatory macierzowe” “。那么我该如何解决呢?HTML

<div id = "box">    
<div class = "table" id = "table">
<div id = "header">Kalkulatory macierzowe</div>

<div id = "table1">
<div class = "header">Wyznacznik [2x2]</div>
<form id = "row1">
<input type = "text" class = "det1"/><!--first row-->
<input type = "text" class = "det1"/>
</form>
<form id = "row2">
<input type = "text" class = "det1"/><!--second row-->
<input type = "text" class = "det1"/>
</form>
<div class = "count"><a href = "#" onclick="det('det1','caclValue2')">Wylicz</a></div>
<input type = "text" id = "calcValue2"/>
</div>

<div id = "table2">
<div class = "header">Wyznacznik [3x3]</div>
<form id = "row1"><!--first row-->
<input type = "text" class = "det"/>
<input type = "text" class = "det"/>
<input type = "text" class = "det"/>
</form>
<form id = "row2"><!--second row-->
<input type = "text" class = "det"/>
<input type = "text" class = "det"/>
<input type = "text" class = "det"/>
</form>
<form id = "row3"><!--third row-->
<input type = "text" class = "det"/>
<input type = "text" class = "det"/>
<input type = "text" class = "det"/>
</form>
<div class = "count" onclick="det(3,'det')"><a href = "#">Wylicz</a></div>
<input type = "text" id = "calcValue1"/>
</div>

<div id = "table3">
<div class = "header">Macierz odwrotna [2x2]</div>
<form id = "row1">
<input type = "text" class = "det2"/><!--first row-->
<input type = "text" class = "det2"/>
</form>
<form id = "row2">
<input type = "text" class = "det2"/><!--second row-->
<input type = "text" class = "det2"/>
</form>
<div class = "count" onclick="invertedMatrix(2,'det2')"><a href = "#">Wylicz</a> </div>
</div>
</div>
</div>

CSS

#box{
border-collapse:collapse;
width:1070px;
min-width: 1045px;
height: 600px;
min-height: 600px;
margin:auto;
background-color:rgb(25,88,179);
background:url('images/box.jpg');
box-shadow:0px 1px 1px 1px #FFFFFF;
-moz-box-shadow:0px 1px 1px 1px #FFFFFF;
-webkit-box-shadow:0px 0px 3px 1px #FFFFFF;
}

table{
position:relative;
top:0;
padding:0;
height:100%;
border-collapse:collapse;
}
#table{
border-collapse:collapse;
border-right:2px inset rgb(0,0,0);
border-left:2px inset rgb(0,0,0);
border-top:2px inset rgb(150,150,150);
border-bottom:none;
width:1067px;
min-width:1067px;
height: 599px;
min-height: 599px;

}
#header{
margin-top:0;
height:30px;
max-height:30px;
text-align:left;
font-size:16px;
font-family:Georgia, serif;
background-color:rgb(32,74,109);
color:rgb(255,255,255);
border-bottom:2px inset rgb(0,0,0);
clear:left;
}

最佳答案

听起来你需要这个:

body {margin: 0;}

关于css 框不适合正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16512766/

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