HTML & CSS Flashcards
The collapse proprety only works with which tags?
Tr, Tbody, Col, Colgroup
Define usage of <Action></Action>
The action takes us to the next page or script after submission
Why is “id” used for bookmark
To identify a unique spot so the computer won’t bring the user to somewhere else
Define <details></details>
It specifies details that user can open and close on demand
Define <summary>
A visible heading for the <detail> element</detail>
Define “inital-scale=1.0”
inital scale defines how zoomed in the website is when someone first click on it, so 1.0 is the standard or the normal zoom.
Element.style.visibility = “hidden”;
True
.showelement{ visibility: show; }
False
What is an encoding type?
Characters or letters like moarse code, english
Define Th colspan attribute
The colspan attribute defines number of columns a header cell can span. (horizontally)
Define <source></source>
The <source></source> HTML Tag supports src attribute.
Define <src></src>
The src attribute provides the media file’s URL.
Define “track” in tags
It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. WebVTT format ( . vtt files)
Define grid-template-columns
specifies the number (and the widths) of columns in a grid layout.
Define CSS framework
a prepped and ready-to-use CSS library (Cascading Style Sheets)
Define usage of “script”
The “script” tag is used to embed a client-side script (JavaScript). The “script” element either contains scripting statements, or it points to an external script file through the src attribute. Like form validation, image manipulation
Define “vw” “vh”
vh stands for viewport height and vw for viewport width
Define static positioning
Elements with position: static are positioned based on the normal flow of the page. They are not affected by the top, right, bottom, or left properties
Define “Tab index”
When a tabindex attribute is used on a web page, the object becomes an element that can be focused with the keyboard which makes it accessible.