How To Only Make A Css Element Appear On One Page?
I'm new to CSS and SCSS. My issue seems very simple to fix but I'm not sure where to start. I have three pages and they each have a table that look similar to this: On the other p
Solution 1:
The problem comes from this:
trtd {
padding:6px8px;
}
No matter how small you try to make your cell, it will always take up at least 16px of space. Your best option is to just not have the empty cells in your markup at all if they're not serving an actual purpose.
Alternately, you could kill the padding:
.statusBlank {
padding: 0;
}
Post a Comment for "How To Only Make A Css Element Appear On One Page?"