CSS Script to Make Capital Letters Automatically
In this article I want to write about how to make capital letters automatically.
If you have to type a lot on your website with a lowercase letter, with this script you do not have to bother retyping if you want to show capital letters.
Here are two ways to display the caps by automatic:
First way you can use CSS. The script like this:
<style>
.capital{
text-transform: uppercase;}
</style>
<p class="capital"> test</p>
Information:
text-transform: uppercase; => CSS script to make capital letters.
capital => CSS name
test => word on capital letters, you can type your word that you want to make capital letters.
So the display on my browser like that.
If you have to type a lot on your website with a lowercase letter, with this script you do not have to bother retyping if you want to show capital letters.
Here are two ways to display the caps by automatic:
First way you can use CSS. The script like this:
<style>
.capital{
text-transform: uppercase;}
</style>
<p class="capital"> test</p>
Information:
text-transform: uppercase; => CSS script to make capital letters.
capital => CSS name
test => word on capital letters, you can type your word that you want to make capital letters.
So the display on my browser like that.
On second way you can use PHP script to make capital letters. It's more simple. I will write on next article. If you want to read it you can click HERE
Happy Trying,
No comments