为什么我的背景图像不会在边缘区域重复?
有如何使边缘背景透明或类似的东西?
所以它会出现背景页面。
这是问题的图像(红线只是我添加到调试中的 div 边框):
这是我的 CSS 代码:
html {
background: url(/img/bg.png);
background-repeat:repeat;
}
table.display {
margin: 0 auto;
clear: both;
width: 100%;
table-layout:fixed;
}
#dt_div {
border: red 4px dashed;
width:96%;
margin-left:auto;
margin-right:auto;
}
和 HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico" />
<title>DataTables Editor example</title>
<style class="include" type="text/css">
@import "support/bootstrap/css/bootstrap.css";
@import "support/bootstrap/dataTables/dataTables.bootstrap.css";
@import "css/customTable.css";
</style>
<script class="include" type="text/javascript" charset="utf-8" src="../../../media/js/jquery.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="../../../media/js/jquery.dataTables.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="../../TableTools/media/js/TableTools.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="../../TableTools/media/js/ZeroClipboard.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="../media/js/dataTables.editor.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="support/bootstrap/js/bootstrap.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="support/bootstrap/dataTables/dataTables.bootstrap.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="support/bootstrap/dataTables/dataTables.editor.bootstrap.js"></script>
<script class="include" type="text/javascript" charset="utf-8" src="./js/custom.js"></script>
<script type="text/javascript">
aDataInitial = '<?php echo json_encode($stack);?>';
</script>
</head>
<body id="c_body" style="border: red 4px dashed;">
<div id="mContainer" style="border: red 4px dashed;">
<div id="dt_div">
<table class="table table-striped table-bordered display" id="example">
<thead>
<tr>
<th style="text-align: center;">Data</th>
<th style="text-align: center;">Tema</th>
<th style="text-align: center;">Vínculo</th>
<th style="text-align: center;">Empresa</th>
<th style="text-align: center;">Sub contratada</th>
<th style="text-align: center;">NDP</th>
<th style="text-align: center;">CH</th>
<th style="text-align: center;">HHT</th>
<th style="text-align: center;">Gerência</th>
<th style="text-align: center;">Área Solicitante</th>
<th style="text-align: center;">CC</th>
<th style="text-align: center;">Rateio</th>
</tr>
</thead>
</table>
</div>
<div class="spacer"></div>
</body>
</html>