What is the Stylish Extensions code for bring lines of text and paragraphs closer together?
If I for whatever reason want to change text spacing or say change the spacing between text and a photograph, how would I go about it?
被采纳的解决方案
What is the exact code that is used?
Try:
P { margin-top:0px !important; margin-bottom:0px !important; }定位到答案原位置 👍 0
所有回复 (5)
选择的解决方案
What is the exact code that is used?
Try:
P { margin-top:0px !important; margin-bottom:0px !important; }
由cor-el于
Merci beaucoup. Thanks
I tried entering the code that was suggested but it didn't have any effect that I could see. Maybe some websites have built in line spacing settings that you have to take or leave.
That code only works for P tags.
You may have to add a selector for other elements like DIV and SPAN or use BODY, BODY * for all elements, but that may have side effects.
You usually need to inspect the DOM of a page to see what needs to be adjusted to get the best result.
OK thanks