Press ESC to close

Or check our Popular Categories...

CSS

42   Articles
42

CSS – Cascading Style Sheets is a style sheet language used for describing the look and formatting of HTML (Hyper Text Markup Language), XML (Extensible Markup Language) documents and SVG elements including (but not limited to) colors, layout, and fonts.

3 Min Read
0 2

PROBLEM: We have the following CSS and HTML code: [pastacode lang=”markup” manual=”%23header%20%0A%7B%0A%20%20height%3A%20150px%3B%0A%7D%0A%3Cdiv%20id%3D%22header%22%3E%0A%20%20%3Ch1%3EHeader%20title%3C%2Fh1%3E%0A%20%20Header%20content%20(one%20or%20multiple%20lines)%0A%3C%2Fdiv%3E%0A” message=”html code” highlight=”” provider=”manual”/] The header section is fixed height, but the header content may change. We would…

Continue Reading
X