Switch to full style
HTML code examples
Post a reply

lowercase table content

Sun Feb 26, 2012 10:01 pm

In this example we use CSS properties to set all the table tag text as lowercase.
Code:
<HTML>
<
head>
<
Title>lowercase table content</Title>
<
style type='text/css'>
table
{ 
     border
-collapse: separate;
     border:2px solid blue;
     text-transform: lowercase;
}
 

 
</style>
</
head>

<
BODY>
<
table>
<
tr >
<
th>TABLE HEADER.
</
th>
</
tr>
<
tr >
<
td>Your Table Cell Text Here
</td>
</
tr>
<
tr >
<
td>Your Table Cell Text Here
</td>
</
tr>
<
tr >
<
td>Your Table Cell Text Here
</td>
</
tr>
</
table>
</
BODY>
</
HTML>  
 




Post a reply
  Related Posts  to : lowercase table content
 add string to another, Lowercase ,Uppercase     -  
 convert lowercase to uppercase     -  
 force letters to be lowercase text-transform     -  
 Hide the content of the div     -  
 show the content of set     -  
 Web content & Website Design     -  
 Read the content from directory     -  
 check folder content using asp     -  
 display the content of text file     -  
 Change and get html content of element     -  

Topic Tags

HTML Table