HTML & CSS Flashcards
make element fixed in CSS
«element» {
position: fixed;
top/right/bottom/left: «value»;
}
make element sticky in CSS
«element» {
position: sticky;
top/right/bottom/left: «value»;
}
» no overflow hidden/scroll/auto on ancestor elements
insert stylesheet into HTML
≤head≥
≤link rel=”stylesheet” href=”«path»”≥
≤/head≥
insert JavaScript into HTML
≤body≥
…
≤script src=”«path»”≥…≤/script≥
≤/body≥
set name of browser tab in HTML
≤head≥
≤title≥«tab name»≤/title≥
≤/head≥
set favicon in HTML
≤head≥
≤link rel=”icon” href=”«path»”≥
≤/head≥
setup HTML link to open up in new browser tab
≤a target=”_blank” href=”«path»”≥…≤/a≥
create text input in HTML
≤form≥
≤input type=”text”≥
≤/form≥
create required input element in HTML
≤form≥
≤input required≥
≤/form≥
provide placeholder text for input element in HTML
≤form≥
≤input placeholder=«placeholder text»≥
≤/form≥
normalize browser styles in CSS
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html: {
font-size: 0.625%;
} // sets 1rem to 10px
set global font settings in CSS
body { font-family: «font», «font fallback»; font-weight: «weight»; font-size: «size»; line-height: «line height»; color: «color»; box-sizing: border-box; }
set background image in CSS
background-image: url(«relative path»);
fix cropping origin of background image in CSS
background-position: top;
» default: top left
» px, %, or top, right, bottom, left, center
stack background images in CSS
background-image: «image1», «image2», …;
set linear gradient in CSS
linear-gradient( «direction», «color1» «_pos1», «color2» «_pos2», ... )
» direction: to «keyword»/«angle»deg
» direction default: to bottom
clip HTML element in CSS
clip-path: «shape»;
» shape: inset/polygon/circle/ellipse/?rectangle/url(«path to svg»)
define polygon in CSS
polygon(«x1» «y1», «x2» «y2», …)
» x axis: →
» y axis: ↓
set text case in CSS
text-transform: «case»;
» case: uppercase/lowercase/capitalize/full-width/inherit/none
move HTML element in x or y direction in CSS
transform: translate(«xpos», «ypos»);
» x axis: →
» y axis: ↓
» default references is element itself
» reference can be set with ‘transform-box’
use custom animation on element in CSS
«parent element» {
backface-visibility: hidden;
}
«element» {
animation: «custom animation name» «duration»s _…;
}
normalize anchor tag appearance in CSS
«a»:link, «a»:visited { text-decoration: none; _display: inline-block; _color: «color»; }
animate element transition to state in pseudo class in CSS
«element» {
…
transition: «target property/all» «duration»s;
}
«element»:«pseudo class» {
«target property»: «target value»;
}
set shadow in CSS
box-shadow: _«direction» «x» «y» «_blur» «__spread» «color»
» direction: ‘inset’ to invert
order and setup of animation property in CSS
animation: «name» «duration»s «delay»s «count» «function» «direction» «fill-mode» «state»
set animation direction in CSS
animation-direction: normal/reverse/alternate/alternate-reverse
set animation transition function in CSS
animation-timing-function: linear/ease_-in_-out/step_-start_-end/steps()/cubic-bezier()
set animation state in CSS
animation-play-state: paused/running
extend animation values beyond animation time in CSS
animation-fill-mode: forwards/backwards/both
how is a CSS rule priority evaluated?
importance ⋁ specificity ⋁ source order
how is the CSS importance priority evaluated?
» user !important » author !important » author » user » browser default / user agent
how is the CSS specificity priority evaluated?
inline styles
» # id selectors
» # class, pseudo-class, attribute selectors
» # element, pseudo-element selectors
define variable in SCSS
$«variable»: «value»;
nest pseudo class in SCSS
«class» { ... &:«pseudo class» { ... } }
fix height rendering of container of floating elements in CSS
«container»::after { content: ''; clear: both; display: table; }
calculate darker color in SCSS
darken(«original color», «percentage»%)
calculate lighter color in SCSS
lighten(«original color», «percentage»%)
use mixin in SCSS
«element» {
…
@include «mixin name»
};
define function in SCSS
@function «name»(«_args»){
…
@return «value»;
}
inherit all rules from another selector in SCSS
like class
«element» {
…
@extend «selector»;
}
naming convention for partial SCSS files
_«name».scss
horizontally center block element in another block element in CSS
margin: 0 auto;
use SCSS variable in calc() function
calc(… #{«variable»} …)
select element by attribute in CSS
[«attr»«_operator»”«_value»” _i]
» operator: = // equals |= // equals or starts with ~= // equals one if divided by space ^= // starts with $= // ends with *= // contains » i: case insensitive
setup text as a clipping mask in CSS
background_-image/-color: «background»;
background-clip: text;
color: transparent;
display: inline-block;
zoom element in CSS
transform: scale(«value»);
tilt element in CSS
transform: skew(«value»deg);
center inline element in CSS
text-align: center;
write → in HTML
→
set border with offset in CSS
outline: «width» «type» «color»;
outline-offset: «offset»;
select direct child(ren) in CSS
«parent» > «child(ren)» {
…
}
rotate element in CSS
transform: rotate(«value»deg);
set z-distance for 3D effect in CSS
perspective: «value»;
» higher values are further away
hide backside of animated element in CSS
backface-visibility: hidden;
blend stacked background images in CSS
background-blend-mode: «mode»
» mode: normal/multiply/screen/overlay/darken/lighten/color-dodge/color-burn/hard-light/soft-light/difference/exclusion/hue/saturation/color/luminosity
normalize ul elements in CSS
list-style: none;
apply filter on element in CSS
filter: «type1» _…;
» type: blur()/brightness()/contrast()/drop-shadow()/grayscale()/hue-rotate()/invert()/opacity()/saturate()/sepia()
setup background video in HTML
≤div class=”bg-video”≥
≤video class=”bg-video__content” autoplay muted loop≥
≤source src=”img/video.mp4” type=”video/mp4”≥
≤source src=”img/video.webm” type=”video/webm”≥
Your browser is not supported!
≤/video≥
≤/div≥
setup background video in CSS
«container» { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
«content» { height: 100%; width: 100%; object-fit: cover; }
setup background image fit in CSS
background-size: «option1», «_option2»;
» option1: » width » width height » cover/contain/auto » option2 is for second background image
setup image or video fit in CSS
object-fit: «option»;
» option: contain/cover/fill/scale-down/none
normalize input element in CSS
«input» { font-family: inherit; color: inherit; border: none; }
«input»:focus {
outline: none;
}
select placeholder of input element in CSS
«input»::placeholder {
…
}
select invalid input element in CSS
«input»:invalid {
…
}
select following sibling in CSS
«element» + «following sibling» {
…
}
select general sibling in CSS
«element» ~ «general sibling» {
…
}
setup radio buttons in HTML
≤input type=”radio” name=”«field name»” id=”«option1»”≥
≤input type=”radio” name=”«field name»” id=”«option2»”≥
setup label for input element in HTML
≤input id=”«name»”≥
≤label for=”«name»”≥«label text»≤/label≥
write whitespace in HTML
 
select checked input element in CSS
«input»:checked {
…
}
write – in HTML
–
setup same height columns in element in CSS
«element» {
display: table;
}
«column1» { width: «width1»; display: table-cell; _vertical-align: «alignment»; }
«column2» { width: «width2»; display: table-cell; _vertical-align: «alignment»; }
break paragraph into columns in CSS
«paragraph» {
column-count: «count»;
}
set paragraph column gutter in CSS
«paragraph» {
column-count: «count»;
column-gap: «width»;
}
setup auto hyphenation in paragraph element in CSS
«paragraph» {
hyphens: auto;
}
» ≤html lang=”«language»”≥ has to be set
write × in HTML
×
setup anchor target in HTML
≤a href=”#«target id»”≥…≤/a≥
≤«target» id=”target id”≥…≤/«target»≥
setup min-width media query in CSS
@media only screen and (min-width: «breakpoint»em) {
…
}
» use »em« for media queries
» only screen prevents query from applying in print
use if and else logic in SCSS
@if «check1» { ... } _@else if «check2» { ... } _@else { ... }
variable in SCSS
$«variable»
media query operators in CSS
not/only/and
» only: prevents older browsers not supporting media queries with media features to apply the style
setup responsive image resolution switching in HTML
≤img srcset=”
«path1» «factor1»x,
«path2» «factor2»x
“ src=«default path» alt=«fallback text» … ≥
provide different images for different media queries in HTML (art direction)
≤picture≥
≤source «_srcset1» «src1» media=«query1»/”(«check1»)”≥
≤_source «_srcset2» «src2» media=«query2»/”(«check2»)”≥
≤img … ≥
≤/picture≥
setup responsive image density switching in HTML
≤img srcset=" «path1» «width1»w, «path2» «width2»w " sizes=" («check1») «value1»vw, («check2») «value2»vw, «default value»px " src="«default path»" alt="«fallback text»"≥
setup responsive background image in CSS
«element» {
background-image: «small image»
@media only screen and (min-width: «width1»),
(min-resolution: 192dpi) and (min-width: «width2»), {
background-image: «big image»
}
}
setup CSS rule only for supporting browsers (graceful degradation)
@supports («rule1») _or («rule2») {
…
}
apply filter to background of element in CSS
backdrop-filter: «filter»;
style text selection in CSS
::selection {
background-color: «color1»;
color: «color2»;
}
setup responsive design in HTML
≤meta name=”viewport” content=”width=device-width, initial-scale=1.0” /≥
detect mobile device in media query
@media only screen and (hover: none) {
…
}
» non mobile devices: »hover: hover«
define mixin in SCSS
@mixin «name»_(«args») {
…«rules»
}
define custom animation in CSS
@keyframes «custom animation name» { 0% { «start properties» } «_val»% { «intermediate properties» } 100% { «end properties» } }
define abstract selector in SCSS
like abstract class
%«abstract selector» {
…«rules»
}
import other file in SCSS
@import “«path»/«name».scss”;