CSS question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JasonB
    Confirmed User
    • Nov 2001
    • 1183

    #1

    CSS question

    I'm trying to insert an <H1> but I dont want a page break.
    I want it to just read:
    blah blah blah
    instead of:
    blah
    blah
    blah

    I'm trying this code, but that doesnt seem to work:

    blah <H1 style="page-break-after: avoid; page-break-before: avoid;">blah</H1> blah

    any suggestions?
  • moltar
    Confirmed User
    • Feb 2005
    • 116

    #2
    h1 {
    display: inline;
    }

    Comment

    • JasonB
      Confirmed User
      • Nov 2001
      • 1183

      #3
      awesome thanks

      Comment

      Working...