搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

What is the Stylish Extensions code for bring lines of text and paragraphs closer together?

  • 5 个回答
  • 1 人有此问题
  • 3 次查看
  • 最后回复者为 cc71

more options

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?

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)

more options

选择的解决方案

What is the exact code that is used?

Try:

P { margin-top:0px !important; margin-bottom:0px !important; }

由cor-el于修改

more options

Merci beaucoup. Thanks

more options

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.

more options

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.

more options

OK thanks