I have an h1
element which gets wrapped in smaller screens
How can I make the wrapped text align itself to the center using css?
This is what I want
welcome To our site, the no. 1 site
to get all ur books
I have an h1
element which gets wrapped in smaller screens
How can I make the wrapped text align itself to the center using css?
This is what I want
welcome To our site, the no. 1 site
to get all ur books
For Example, the h1 element is this <h1 class="heading">Welcome To our site, the no. 1 site to get all your books</h1>
, add this to the css: .heading{text-align:center}
Text
Text No.2
<span>
<h1 style="text-align:center">welcome To our site, the no. 1 site</h1>
<h1 style="text-align:center">to get all ur books</h1>
</span>