Can we center align text in title tag?

后端 未结 3 1465
萌比男神i
萌比男神i 2021-01-20 17:38

I have the following code -



Silly Title    

Silly Body


        
相关标签:
3条回答
  • 2021-01-20 18:16

    You can try this

              <Title><h2 align="center">Centered Heading</h2></Title>
    

    I am not sure this will work or not but try..... Check this tutorial

    http://www.tizag.com/htmlT/htmlattributes.php

    0 讨论(0)
  • 2021-01-20 18:25

    If you have your <title> in a <header> tag, you can use this:

    <style>
    header {
    text-align: center;
    }
    </style>
    
    0 讨论(0)
  • 2021-01-20 18:32

    No, you can't format the title in any way.

    It's just information to the browser, that it will display outside the page itself. Typically it's shown in the name of the browser or on the tab for the page.

    0 讨论(0)
提交回复
热议问题