the code i've writed so far:
<div>
<h1>Classification <br>of raid levels</h1>
</div>
<table>
...
</table>
there is space between the div and the table, and i would like to remove it using the css, is it possible?
that's how it comes now:
the code i've writed so far:
<div>
<h1>Classification <br>of raid levels</h1>
</div>
<table>
...
</table>
there is space between the div and the table, and i would like to remove it using the css, is it possible?
that's how it comes now:
Set margin: 0
on h1
h1 {
margin: 0;
}
<div>
<h1>Classification <br>of raid levels</h1>
</div>
<table>
...
</table>
Add margin-bottom:0; to the div or maybe a margin-top on the table? Have to use your dev tools and see where it is.