简体   繁体   中英

WordPress Spacing Issue while submitting any Post

I have a wordpress theme. I wrote a line and hit enter after that I put some initial white spaces to start the paragraph but when I publish the post the initial white spaces to the start of new paragraph not appears in that post. eg

This is my first post.

             This is my first first post.

After publishing in wordpress it shows:

This is my first post.

This is my first post.

Can anyone please help me?

For inline spacing you can use   inside the wordpress editor. Use it like     to space 3 times. Hope this helps.

Don't use spaces to indent your paragraphs. Instead target your paragraphs with the CSS text-indent property in your theme's CSS. The indentation of a paragraph is presentation , and should be controlled by the CSS. The paragraphs themselves are content, and shouldn't have their presentation hardcoded into the HTML.

Separating the presentation into the CSS leaves you free to change/remove all the indentation at once any time later just by editing a single line of code, rather than having to edit every paragraph you've ever written.

 /* Use whatever selector will target your post's paragraphs in your theme's style.css */ p { text-indent: 24px; } 
 <p>This is a paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at elit nibh, in pretium tellus. Donec id dui mi. Nam malesuada, velit sed porta mollis, dolor felis eleifend diam.</p> <p>Here's another one. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at elit nibh, in pretium tellus. Donec id dui mi. Nam malesuada, velit sed porta mollis, dolor felis eleifend diam.</p> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM