space gap | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

space gap

SANJU pvt ltd. ----------------------- free shop mall questuon is when i write both...gap betwn both is too large... i want very close all these three displayed.... this is my ....heading

26th Sep 2017, 6:15 PM
sanjeev
sanjeev - avatar
1 Answer
+ 2
It default depends mostly on wich element(s) is (are) used to embed your textual content, and then on wich default spacing values are used/changed by Css: <header> <h1 style="margin:0;">SANJU pvt ltd</h1> <hr style="margin:0;"> <h2 style="margin:0;">free shop mall</h2> </header> ... that should do what you seems to ask (vertical space between element -- but your question isn't enough clear and specific: if you want to change letter/word spacing, use corresponding Css properties 'letter-spacing', 'word-spacing'). Obviously, margin are not required to be zero and could be specified in any valid Css unit, as well as independently for each side... You must also be aware of 'padding' values, wich introduce internal margin (css 'margin' stand for space between each elements box borders, while css 'padding' stand for space between element box borders and its own content -- even if borders are not visible... however setting some borders at working/debugging time would be very useful to better see how elements interract themselves in the page ^^).
27th Sep 2017, 8:10 AM
visph
visph - avatar