css help

Discussion in 'Software' started by robertbiferi, Oct 31, 2011.

  1. robertbiferi

    robertbiferi I can't follow the rules

    I need help with Inline css.

    I know if I want to have a word Underline I do this

    <p style="underline:

    then my word or something like this.

    But what if I want to give it a Headline size of say 6. how do I ad the <H6> tags to the style tage above?

    Do I do this

    <p H6 style="underline:

    or what?
     
  2. PC-XT

    PC-XT Master Sergeant

    The usual way to do underlining is text-decoration:underline

    To change font sizes, use font-size

    There isn't very much correlation between css font-sizes and font tag (and H# tag) sizes. However, as an example, I'm assuming H6 will roughly map to xx-small font size. For an explanation of the mapping, see http://style.cleverchimp.com/font_size_intervals/altintervals.html

    The H6 tag is a block element, so to make it like the actual tag, use font-size:xx-small;display:block;

    Some H# tags also display bold text, which in css would be font-weight: bold

    So, your example opening paragraph tag code would be:
    <p style="text-decoration:underline;display:block;font-weight:bold;font-size:xx-small">

    You might want to change font-size to be a height in points, pixels, em, percentage, cm, etc. See http://www.w3schools.com/cssref/pr_font_font-size.asp
     
  3. mjnc

    mjnc MajorGeek

  4. robertbiferi

    robertbiferi I can't follow the rules

    Can I do this code?

    <H2 text-decoration:underline>

    Or is this not how it would work?
     
  5. PC-XT

    PC-XT Master Sergeant

    You would need to put it in a style attribute, like <h2 style="text-decoration:underline"> or in css code, if you want all #2 headings to be underlined, you can use h2{text-decoration:underline}
     

MajorGeeks.Com Menu

Downloads All In One Tweaks \ Android \ Anti-Malware \ Anti-Virus \ Appearance \ Backup \ Browsers \ CD\DVD\Blu-Ray \ Covert Ops \ Drive Utilities \ Drivers \ Graphics \ Internet Tools \ Multimedia \ Networking \ Office Tools \ PC Games \ System Tools \ Mac/Apple/Ipad Downloads

Other News: Top Downloads \ News (Tech) \ Off Base (Other Websites News) \ Way Off Base (Offbeat Stories and Pics)

Social: Facebook \ YouTube \ Twitter \ Tumblr \ Pintrest \ RSS Feeds