Why is there white space between the rows? I set all the margins and paddings to 0, but I can't get rid of...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I copied the table code from Bootstrap and set each of the rows to have its own background color, but there is white space in between each 1 and I do not know why.
I set all the border, margins and paddings to 0 for all the "tr"s, "tbody" and the "thead."
Question: What can I do in order to prevent the white spaces appearing around table cells?
#C1{
margin-top: 40px;
width: 75%;
border: 1px solid black;
padding: 0px;
}
.table-red{
background-color: red;
color: #ffffff
}
.table{
margin-bottom: 0px;
padding: 0px;
}
.table-striped tbody tr:nth-of-type(even){
background-color: red;
color: white;
}
.table-striped tbody tr:nth-of-type(odd){
background-color: blue;
color: white;
border: 0;
}
thead{
background-color: green;
border: 0px;
margin-bottom: 0px;
margin-top: 0px;
}
th{
border: 0px;
}
tbody{
margin-top: 0px;
}
<div class="container" id="C1">
<table class="table table-striped">
<thead >
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
The white space should disappear
twitter-bootstrap
add a comment |
I copied the table code from Bootstrap and set each of the rows to have its own background color, but there is white space in between each 1 and I do not know why.
I set all the border, margins and paddings to 0 for all the "tr"s, "tbody" and the "thead."
Question: What can I do in order to prevent the white spaces appearing around table cells?
#C1{
margin-top: 40px;
width: 75%;
border: 1px solid black;
padding: 0px;
}
.table-red{
background-color: red;
color: #ffffff
}
.table{
margin-bottom: 0px;
padding: 0px;
}
.table-striped tbody tr:nth-of-type(even){
background-color: red;
color: white;
}
.table-striped tbody tr:nth-of-type(odd){
background-color: blue;
color: white;
border: 0;
}
thead{
background-color: green;
border: 0px;
margin-bottom: 0px;
margin-top: 0px;
}
th{
border: 0px;
}
tbody{
margin-top: 0px;
}
<div class="container" id="C1">
<table class="table table-striped">
<thead >
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
The white space should disappear
twitter-bootstrap
Possible duplicate of How to remove unwanted space between rows and columns in table?
– Feelsbadman
Jan 3 at 4:00
add a comment |
I copied the table code from Bootstrap and set each of the rows to have its own background color, but there is white space in between each 1 and I do not know why.
I set all the border, margins and paddings to 0 for all the "tr"s, "tbody" and the "thead."
Question: What can I do in order to prevent the white spaces appearing around table cells?
#C1{
margin-top: 40px;
width: 75%;
border: 1px solid black;
padding: 0px;
}
.table-red{
background-color: red;
color: #ffffff
}
.table{
margin-bottom: 0px;
padding: 0px;
}
.table-striped tbody tr:nth-of-type(even){
background-color: red;
color: white;
}
.table-striped tbody tr:nth-of-type(odd){
background-color: blue;
color: white;
border: 0;
}
thead{
background-color: green;
border: 0px;
margin-bottom: 0px;
margin-top: 0px;
}
th{
border: 0px;
}
tbody{
margin-top: 0px;
}
<div class="container" id="C1">
<table class="table table-striped">
<thead >
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
The white space should disappear
twitter-bootstrap
I copied the table code from Bootstrap and set each of the rows to have its own background color, but there is white space in between each 1 and I do not know why.
I set all the border, margins and paddings to 0 for all the "tr"s, "tbody" and the "thead."
Question: What can I do in order to prevent the white spaces appearing around table cells?
#C1{
margin-top: 40px;
width: 75%;
border: 1px solid black;
padding: 0px;
}
.table-red{
background-color: red;
color: #ffffff
}
.table{
margin-bottom: 0px;
padding: 0px;
}
.table-striped tbody tr:nth-of-type(even){
background-color: red;
color: white;
}
.table-striped tbody tr:nth-of-type(odd){
background-color: blue;
color: white;
border: 0;
}
thead{
background-color: green;
border: 0px;
margin-bottom: 0px;
margin-top: 0px;
}
th{
border: 0px;
}
tbody{
margin-top: 0px;
}
<div class="container" id="C1">
<table class="table table-striped">
<thead >
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
The white space should disappear
#C1{
margin-top: 40px;
width: 75%;
border: 1px solid black;
padding: 0px;
}
.table-red{
background-color: red;
color: #ffffff
}
.table{
margin-bottom: 0px;
padding: 0px;
}
.table-striped tbody tr:nth-of-type(even){
background-color: red;
color: white;
}
.table-striped tbody tr:nth-of-type(odd){
background-color: blue;
color: white;
border: 0;
}
thead{
background-color: green;
border: 0px;
margin-bottom: 0px;
margin-top: 0px;
}
th{
border: 0px;
}
tbody{
margin-top: 0px;
}
<div class="container" id="C1">
<table class="table table-striped">
<thead >
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
#C1{
margin-top: 40px;
width: 75%;
border: 1px solid black;
padding: 0px;
}
.table-red{
background-color: red;
color: #ffffff
}
.table{
margin-bottom: 0px;
padding: 0px;
}
.table-striped tbody tr:nth-of-type(even){
background-color: red;
color: white;
}
.table-striped tbody tr:nth-of-type(odd){
background-color: blue;
color: white;
border: 0;
}
thead{
background-color: green;
border: 0px;
margin-bottom: 0px;
margin-top: 0px;
}
th{
border: 0px;
}
tbody{
margin-top: 0px;
}
<div class="container" id="C1">
<table class="table table-striped">
<thead >
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
twitter-bootstrap
twitter-bootstrap
edited Jan 3 at 6:22


Feelsbadman
696724
696724
asked Jan 3 at 3:25
Vamsi KrishnaVamsi Krishna
276
276
Possible duplicate of How to remove unwanted space between rows and columns in table?
– Feelsbadman
Jan 3 at 4:00
add a comment |
Possible duplicate of How to remove unwanted space between rows and columns in table?
– Feelsbadman
Jan 3 at 4:00
Possible duplicate of How to remove unwanted space between rows and columns in table?
– Feelsbadman
Jan 3 at 4:00
Possible duplicate of How to remove unwanted space between rows and columns in table?
– Feelsbadman
Jan 3 at 4:00
add a comment |
1 Answer
1
active
oldest
votes
option 1: (CSS)
The border-collapse property sets whether table borders should collapse into a single border or be separated as in standard HTML.
The border-spacing property sets the distance between the borders of adjacent cells.
table {
...
border-spacing:0;
border-collapse:collapse;
}
option 2: (HTML)
The cellspacing attribute specifies the space, in pixels, between cells.
<table .. cellspacing="0"> .. </table>
opt1: https://www.w3schools.com/cssref/pr_border-collapse.asp
& https://www.w3schools.com/cssref/pr_border-spacing.asp
opt2: https://www.w3schools.com/tags/att_table_cellspacing.asp
EDIT: OP had bootstrap files fetched from a CDN and there were 2 css rules which added borders:
FILE: _tables.scss
LINE: 5
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
FILE: bootstrap.css
LINE: 1524
.table td, .table th {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
These can easily be overriden by adding the following to the default css file:
.table thead th {
border-bottom: none !important;
}
.table td, .table th {
border-top:none !important;
}
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
1
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:.table thead th { border-bottom: none !important; }
and.table td, .table th { border-top:none !important; }
inside your <style> block
– Feelsbadman
Jan 3 at 22:39
1
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
1
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
|
show 12 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015937%2fwhy-is-there-white-space-between-the-rows-i-set-all-the-margins-and-paddings-to%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
option 1: (CSS)
The border-collapse property sets whether table borders should collapse into a single border or be separated as in standard HTML.
The border-spacing property sets the distance between the borders of adjacent cells.
table {
...
border-spacing:0;
border-collapse:collapse;
}
option 2: (HTML)
The cellspacing attribute specifies the space, in pixels, between cells.
<table .. cellspacing="0"> .. </table>
opt1: https://www.w3schools.com/cssref/pr_border-collapse.asp
& https://www.w3schools.com/cssref/pr_border-spacing.asp
opt2: https://www.w3schools.com/tags/att_table_cellspacing.asp
EDIT: OP had bootstrap files fetched from a CDN and there were 2 css rules which added borders:
FILE: _tables.scss
LINE: 5
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
FILE: bootstrap.css
LINE: 1524
.table td, .table th {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
These can easily be overriden by adding the following to the default css file:
.table thead th {
border-bottom: none !important;
}
.table td, .table th {
border-top:none !important;
}
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
1
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:.table thead th { border-bottom: none !important; }
and.table td, .table th { border-top:none !important; }
inside your <style> block
– Feelsbadman
Jan 3 at 22:39
1
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
1
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
|
show 12 more comments
option 1: (CSS)
The border-collapse property sets whether table borders should collapse into a single border or be separated as in standard HTML.
The border-spacing property sets the distance between the borders of adjacent cells.
table {
...
border-spacing:0;
border-collapse:collapse;
}
option 2: (HTML)
The cellspacing attribute specifies the space, in pixels, between cells.
<table .. cellspacing="0"> .. </table>
opt1: https://www.w3schools.com/cssref/pr_border-collapse.asp
& https://www.w3schools.com/cssref/pr_border-spacing.asp
opt2: https://www.w3schools.com/tags/att_table_cellspacing.asp
EDIT: OP had bootstrap files fetched from a CDN and there were 2 css rules which added borders:
FILE: _tables.scss
LINE: 5
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
FILE: bootstrap.css
LINE: 1524
.table td, .table th {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
These can easily be overriden by adding the following to the default css file:
.table thead th {
border-bottom: none !important;
}
.table td, .table th {
border-top:none !important;
}
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
1
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:.table thead th { border-bottom: none !important; }
and.table td, .table th { border-top:none !important; }
inside your <style> block
– Feelsbadman
Jan 3 at 22:39
1
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
1
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
|
show 12 more comments
option 1: (CSS)
The border-collapse property sets whether table borders should collapse into a single border or be separated as in standard HTML.
The border-spacing property sets the distance between the borders of adjacent cells.
table {
...
border-spacing:0;
border-collapse:collapse;
}
option 2: (HTML)
The cellspacing attribute specifies the space, in pixels, between cells.
<table .. cellspacing="0"> .. </table>
opt1: https://www.w3schools.com/cssref/pr_border-collapse.asp
& https://www.w3schools.com/cssref/pr_border-spacing.asp
opt2: https://www.w3schools.com/tags/att_table_cellspacing.asp
EDIT: OP had bootstrap files fetched from a CDN and there were 2 css rules which added borders:
FILE: _tables.scss
LINE: 5
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
FILE: bootstrap.css
LINE: 1524
.table td, .table th {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
These can easily be overriden by adding the following to the default css file:
.table thead th {
border-bottom: none !important;
}
.table td, .table th {
border-top:none !important;
}
option 1: (CSS)
The border-collapse property sets whether table borders should collapse into a single border or be separated as in standard HTML.
The border-spacing property sets the distance between the borders of adjacent cells.
table {
...
border-spacing:0;
border-collapse:collapse;
}
option 2: (HTML)
The cellspacing attribute specifies the space, in pixels, between cells.
<table .. cellspacing="0"> .. </table>
opt1: https://www.w3schools.com/cssref/pr_border-collapse.asp
& https://www.w3schools.com/cssref/pr_border-spacing.asp
opt2: https://www.w3schools.com/tags/att_table_cellspacing.asp
EDIT: OP had bootstrap files fetched from a CDN and there were 2 css rules which added borders:
FILE: _tables.scss
LINE: 5
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
FILE: bootstrap.css
LINE: 1524
.table td, .table th {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
These can easily be overriden by adding the following to the default css file:
.table thead th {
border-bottom: none !important;
}
.table td, .table th {
border-top:none !important;
}
edited Jan 3 at 22:50
answered Jan 3 at 3:50


FeelsbadmanFeelsbadman
696724
696724
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
1
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:.table thead th { border-bottom: none !important; }
and.table td, .table th { border-top:none !important; }
inside your <style> block
– Feelsbadman
Jan 3 at 22:39
1
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
1
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
|
show 12 more comments
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
1
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:.table thead th { border-bottom: none !important; }
and.table td, .table th { border-top:none !important; }
inside your <style> block
– Feelsbadman
Jan 3 at 22:39
1
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
1
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
I tried both of them. It did not work.
– Vamsi Krishna
Jan 3 at 4:27
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
It worked here tho. Could you post what you've tried so far? (edit the question)
– Feelsbadman
Jan 3 at 4:29
1
1
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:
.table thead th { border-bottom: none !important; }
and .table td, .table th { border-top:none !important; }
inside your <style> block– Feelsbadman
Jan 3 at 22:39
@VamsiKrishna Oh, right. Just saw that. Then you have two options: you either download bootstrap files and modify them. or override those by adding:
.table thead th { border-bottom: none !important; }
and .table td, .table th { border-top:none !important; }
inside your <style> block– Feelsbadman
Jan 3 at 22:39
1
1
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
I know SO says to avoid "thank you," but THANK YOU so much. It worked!
– Vamsi Krishna
Jan 3 at 22:41
1
1
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
Well you could thank me by accepting the answer :) .
– Feelsbadman
Jan 3 at 22:42
|
show 12 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015937%2fwhy-is-there-white-space-between-the-rows-i-set-all-the-margins-and-paddings-to%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of How to remove unwanted space between rows and columns in table?
– Feelsbadman
Jan 3 at 4:00