Is this possible

Discussion in 'HTML & Website Design' started by palyam, Aug 31, 2006.

  1. #1
    Hi,

    I know by using capitalize, every 1st letter in the word, gets capitalised like

    Thomas Jefferson Roland

    If we say uppercase: THOMAS JEFFERSON ROLAND.

    Is this possible using css

    I can't copy & paste the result

    This is the code:

    <html>
    <head>heel</head>
    <body>
    <table>
    <tr>
    <td height="19" colspan="15" valign="top" font-size="8pt"><font size="9pt">T</font>HOMAS <font size="9pt">J</font>EFFERSON <font size="9pt">R</font>USK </td>
    </tr>
    </table>
    </body>
    </html>
     
    palyam, Aug 31, 2006 IP
  2. void

    void Peon

    Messages:
    119
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #2
    The closest you'd get in CSS is
    font-variant:small-caps
    Code (markup):
     
    void, Aug 31, 2006 IP
  3. Mano70

    Mano70 Peon

    Messages:
    42
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    If your text was lowercase we could have used

    text-transform:capitalize
    which sets the first letter of each word in uppercase. But as long as your words are in uppercase I think you must include some programming also (I do this in ASP on the site in my signature).
     
    Mano70, Aug 31, 2006 IP