CSS Shortcuts
CSS Shortcuts
Jamil Alagha
BSWE 4327 - Programming Web HTML Shortcuts Tags
1
Dr. Jamil Alagha
BSWE 4327 - Programming Web HTML Shortcuts Tags
s { background-color: #ee3e80; }
s { background-color: white; }
s { background-color: rgb(0,0,0); opacity: 0.5; } Two ways to give background color with
s { background-color: rgba(0,0,0,0.5); } opacity
Text
s { font-family: "Courier New", Courier, 3 choices of fonts for s element
monospace;}
s { font-size: 12px;} Font size 12 pixels
s { font-size: 200%;} Font size 200% of 16 px
s { font-size: 1.3em;} Font size 1.3* 1 em=1.3*16px
@font-face { font-family: 'new name'; Downloading new font and name it
src: url('url’);} Using this new font
s { font-family: “new name”, Georgia, serif;}
Text shape
s { font-weight: bold;} font-weight: Bold, normal, bolder, 100,200…
s { font-style: italic;} font-style: Italic, normal
s { text-transform: uppercase;} text-transform: uppercase, lowercase, capitalize
s { text-decoration: underline;} text-decoration: none, underline, overline, line-
through, blink
s {line-height: 1.4em;} Increasing the line-height increase vertical gap
between lines
s { letter-spacing: 0.2em;} Space between letters
s {word-spacing: 1em;} Space between words
s { text-align: left;} text-align: left, right, justify, center
s { vertical-align: text-top;} vertical-align: text-top, baseline, text-bottom
s { text-indent: 20px;} Space from left, it can be -ve
s { text-shadow: 2px 2px 7px horizontal distance, vertical distance, blur amount,
#111111;} color
s.intro:first-letter {css style } Pseudo class of first letter
s.intro:first-line {css style } Pseudo class of first line
Boxes
s { height: 300px; width: 300px; } Height, width of boxes around s element
s { height: 75%; width: 75%; } 75% of the containing element size
s { min-width: 450px; max width or height the boxes might cause text to
max-width: 650px;} will not be larger than overwhelm to another
s { min-width: 450px; min width or height the boxes element if not enough
max-width: 650px;} will not be smaller than space given
2
Dr. Jamil Alagha
BSWE 4327 - Programming Web HTML Shortcuts Tags
University of Palestine