javascript - 无法使用对齐参数将表格放置在中心

标签 javascript html css

我有一个将使用 jquery 动态加载的表。我将对齐参数作为中心。但它左对齐。请帮助我

   <title></title>
<style>
.tb1 { background-color : #EEE8AA; color: black; font-size: 13pt; onfocus="this.value=" font:verdana}
.inp { border: 0; color: black; font-size: 13pt; onfocus="this.value=" font:verdana }
/* button styles */
.button0 { background-color: Orange  ; border: 110;  color: black; text-align: center; text-decoration: none; display: inline-block; border-color: #ff0000; }
.button1 { background-color: Orange  ; border: 110;  color: black; text-align: center; text-decoration: none; margin: 0 auto; display: block;  border-color: black;}
.button2 { background-color: Orange  ; border: 110;  color: black; text-align: center; text-decoration: none; margin: 0 auto; display: block;  border-color: black;}
/* web page layout styles */
html, body { margin: 0;}
div { height: 30%; background-color: white; float: left;}
#left { width:33%; margin-top:20px }
#center { width:33%; margin-top:20px }
#right { width:33%; margin-top:20px }
/* table-itemtable styles */
table { border-collapse: collapse;}
th, td { text-align: center; padding: 8px;}
th {background-color: #4CAF50; color: white;}
tr {border-bottom: 1px solid;}
tbody { display: block; }
tbody {
    height: 300px;       /* Just for the demo          */
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
}
</style>
</head>
<body>
<div id="left">
GRn:    <input type="text" id="grn" class="tb1" placeholder="Provide your input" onkeypress="return isNumber(event)" autofocus="autofocus" /><br><br>
Unit:   <input type="text" list="combo-options" id="unit" class="tb1">
		<datalist id="combo-options">
	    <option value="UNIT 1">UNIT 1</option>
  		<option value="UNIT 2">UNIT 2</option>
		</datalist><br><br>
<input type="button" id="find" value="Find" class="button0"/><br><br>
</div>
<div id="center">
PO no:     <input type="text" id="pono" readonly="readonly" class="inp"/><br><br>
PO Date:   <input type="text" id="podt"   readonly="readonly" class="inp"/><br><br>
V.Inv.No    <input type="text" name="vinvno" readonly="readonly" id="vinvno" class="inp"/><br><br>
V.Inv.Date  <input type="text" name="vinvdt" readonly="readonly" id="vinvdt" class="inp"/><br><br>
</div>
<div id="right">
IRno:  <input type="text" name="irepno" id="irepno" class="inp" /><br><br>
Creation Date <input type="date" name="cdate" id="cdate" class="inp" value="<%= new SimpleDateFormat("dd-MM-yyyy").format(new java.util.Date())%>"><br><br>
Type<select name="evalu" id="evalu">
	<option value="electrical">Electrical</option>
	<option value="mechanical">Mechanical</option>
</select>
</div>
<div id="tablediv">
<table cellspacing="0" id="itemtable" align="center"> 
    <tr>
    	<th> SLno</th>
        <th>Item name</th> 
        <th>Item code</th>
        <th>Supplier</th>  
        <th>Received qty</th>   
        <th>Accepted qty</th>   
        <th>Rejected qty</th>      
        <th>Remarks</th>             
    </tr> 
</table>
</div>
<div id="inspdiv">

</div>
</body>
</html>
</html>

最佳答案

这是由于表格中的 width:100%; 造成的。删除它工作得很好。

JSFIDDLE

/* table-itemtable styles */
table { border-collapse: collapse;}
th, td { text-align: center; padding: 8px;}
th {background-color: #4CAF50; color: white;}
tr {border-bottom: 1px solid;}
tbody { display: block; }
tbody {
    height: 500px;       /* Just for the demo          */
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
}
<div id="tablediv">
<table cellspacing="0" id="itemtable" align="center"> 
    <tr>
    	<th> SLno</th>
        <th>Item name</th> 
        <th>Item code</th>
        <th>Supplier</th>  
        <th>Received qty</th>   
        <th>Accepted qty</th>   
        <th>Rejected qty</th>      
        <th>Remarks</th>             
    </tr> 
</table>
</div>

编辑:

从 CSS 中的 div 中删除 float:left。这是导致问题的原因。而是使用 display:inline-block

关于javascript - 无法使用对齐参数将表格放置在中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42851161/

相关文章:

javascript - 如何在 JavaScript 中将 OOP 转换为 FP

javascript - 下拉菜单没有反应

javascript - AngularJS 与 REST 同步实时收集并获得实时更新

html - 有没有办法在大屏幕上设置自动宽度?

javascript - 调整容器分区大小时,css float 布局不移动

.net - .NET 的 HTML 解析库

android - HTML 中的可滚动内容不会在 Android 模拟器或手机中滚动

javascript - 用较大的图像替换较小的图像(在加载较大的图像后)

javascript - 检测对象构造函数的 onload

javascript - WebGL 颜色约定 - 我使用哪个以及为什么?