+ 1
How can I avoid the space between two <div> element in my new website ?
I have made a simple webpage by sololearn and put some animation on it. But the horizontal gaps between div are annoying. How to fix it???Here is the code https://code.sololearn.com/W4Hzx65aecsx/?ref=app
11 Respuestas
+ 1
Did you try to put a negative number in the margin of the container? (in the css sheet)
like:
div_container{
margin: -40px;
}
maybe that could works...
Another thing: you need some space in the paragraphs, their are to close to the borders and that dont look nice (design tip)
+ 6
I tried Gopal's suggestion...minus the padding...put
* {
margin: 0px;
}
before html, body then delete
div {
margin-bottom: 20px;
}
+ 3
Thanks...Barcioni..its working...but due to the gradient effect..it dont mix with each other and looking weird..moreover thanks...If i will make another content i will definietely use it...I have also some idea..after the <p> tag i add empty <div></div> tag and then the horizontal line vanishes.
+ 2
Add this to your css
*{
margin: 0;
padding: 0;
}
And remove
div {
margin-bottom: 20px;
}
from line 257
+ 1
nothing happened
+ 1
not working...i really need a fix
+ 1
Soubhagya Ranjan Sorry this not work?
https://code.sololearn.com/W9WXwjZ3EAci/?ref=app
0
nothing happening bro
0
CSS
div {
display:inline-block;
}
Try this, if it does not work contact me and we will try something else :)
0
Change the parent font size to 0px
0
remove div margin-bottom and add:
div > *{
margin:0;
}