私はHTML/CSS
で本当に新しいですが、私はDjango Webアプリケーションを実現するために両方の言語を使用する必要があります。CSS/HTMLによるセルの表スペース
<table>
に問題が発生するのは、セルのスペースが自分のCSSファイルから考慮されていないためです。
.navbar {
background-color: #0083A2;
}
.nav navbar-brand {
color: #FFFFFF;
}
.active {
background-color: #454545;
}
h1,
h2,
h4 {
color: #0083A2;
}
.button {
display: inline;
margin-left: auto;
margin-right: auto;
border-radius: 8px;
font-size: 16px;
border: 2px solid #000000;
background-color: #e8e8e8;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
}
.form-fields {
border-radius: 8px;
margin-right: auto;
}
.col-sm-6 {
display: inline-block;
margin-left: 10px;
width: 30%;
list-style: None;
}
.col-sm-8 {
list-style: initial;
}
.col-sm-10 {
display: inline-block;
margin-left: 10px;
width: 800%;
list-style: None;
}
.button:hover {
background-color: #0083A2;
color: #454545;
}
table {
border-spacing: 100px;
}
<div class="col-sm-8">
<h4><b><font color="#0083A2"> Récapitulatif des 3 dernières fiches individuelles créées: </b></font></h4>
<table>
<tbody>
<tr>
<th>ID</th>
<th>Civilité</th>
<th>Nom</th>
<th>Prénom</th>
<th>Date de Naissance</th>
<th>Ville de Naissance</th>
<th>Pays de Naissance</th>
</tr>
{% for item in identity %}
<tr>
<td>{{ item.id}}</td>
<td>{{ item.title }}</td>
<td>{{ item.lastname }}</td>
<td>{{ item.firstname }}</td>
<td>{{ item.birthday }}</td>
<td>{{ item.birthcity }}</td>
<td>{{ item.birthcountry }}</td>
</tr>
</tbody>
</table>
</div>
私は私の2つのスクリプトで間違った何かを書きましたか?アドバイスがあれば、私は喜びを考慮に入れます!
ありがとうございました!
EDIT:これは私のテーブルである
:あなたのCSSコードで使用
!important;
あなたの質問にはスペースが付いています。 – Quentin
@falguni - OPがスペースを削除しようとしていると思われる理由は何ですか?彼らは明示的にそれを多数に設定しました。 – Quentin
@falguniは動作しません..'border-spacing'と' border-collapse'は自分のhtmlページに影響しません – Deadpool