Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
202 views
in Technique[技术] by (71.8m points)

html - Is it impossible to center text within a paragraph?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

place in one p tag and add span to the text you want to center. use display block on the span and text-align center

span{
display:block;
text-align:center}
<html>
   <body>
      <p>Text<br>
         <img src = "https://i.imgur.com/MX7p08X.png">
         <span>Centered text</span>
      </p>
   </body>
</html>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...