How do I create a BLANK + TRANSPARENT block of 800px height per 1000px width? And why the code below does not work for this?
html
<div class="block"></div>
css
.block {
height: 800px;
width: 1000px;
}
With this, I'm trying to create spaces above and below the div .vitrine
:
<div class="block"></div>
<div class="vitrine"></div>
<div class="block"></div>