1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

CSS poblems with css

Discussion in 'Web Development' started by navyfalcon, Jun 17, 2011.

  1. navyfalcon

    navyfalcon Well-Known Member Verified Member

    The titles on the right side do not always line up with the pictures on the left side. My coding is not the best. I just work on it until it functions. I need to improve it before presenting it to middle schools for math classes. My way of promoting my education site.
    Speed Crunch Plane Geometry Examples with answers and Ref.
    -
    thank you
    falcon
     
  2. navyfalcon

    navyfalcon Well-Known Member Verified Member

    used <br /> to align the page
    not good code, but it works
    -
    falcon
     
  3. ishkey

    ishkey Moderator, Logos, Sports Crests Staff Member Verified Member

    The <br> tag is an empty tag which means that it has no end tag.
    Use the <br> tag to insert line breaks, not to create paragraphs.
    BR - Line Break

    good code <br>
    not good code <br />
     
  4. navyfalcon

    navyfalcon Well-Known Member Verified Member

    Making corrections
    Thank You
    -
    falcon
     
  5. navyfalcon

    navyfalcon Well-Known Member Verified Member

    finally found the answer
    Differences Between HTML and XHTML
    from W3 Schools (didn't know before)
    In HTML the <br> tag has no end tag. In XHTML the <br> tag must be properly closed, like this: <br />.
    -
    Reason for the check, I kept getting validation errors.
    -

    Thank you for the help.
    falcon