- Doctype tells the browser which version of HTML/XHTML standard is used and how to render the page.
What is the difference between display: none
and visibility: hidden
?
display: none
: removes the element from the flow, allowing other elements to fill in.visibility: hidden
: only hides the element, but space is allocated for it on the page.
<div> Lorem ipsum
<p> Lorem ipsum</p>
</div>
div {
font-size: 16px;
}
p {
font-size: 0.5em;
}
- 8px, because
em
units represent percentage of its parent. In this case it is a half of 16px.
- sessionStorage is available only when a browser's tab is opened.
- localStorage survives on closing and reopening a browser.
- Data-attributes are used to store custom data directly inside HTML tags. They are easily-accessible from CSS and JavaScript.
- Resetting removes all the native styles provided by browsers.
- Normalizing is just a correction of some common bugs.
- CSS sprite is merging multiple images into a single image.
- It reduces the amount of WEB-requests and increases page speed.
- SVG stands for
Scalable Vector Graphics
, it is used to show vector graphics on the page. The biggest benefit is that SVG images don't lose quality when zoomed or resized(unliked JPG). - You can easily change the size, color and animate SVG images.
- SVG's also can be bundled in a SVG-sprite.
New semantic elements
: , ,, , , New form controls
: , , , , ,Better support for embedded media using
: ,
- CSS preprocessor is a tool which allows you to create CSS.
- Code much faster, in a more structured manner.
- Preprocessors extend the CSS functional by adding variables, mixins, partials, also allow to use operators inside the code.
- Examples are SASS, or LESS
- Microdata is a set of additional HTML tags for specifying the additional semantic information to help the search engines read your site properly.
<table>
: for wrapping a table.<th>
: represents the table heading<tr>
: creates a table row that store the data elements.<td>
: represent column in a row.
- Box model represents a structured way to space elements in relationship to each other.
- It is made of margins, borders, padding, and content.
- When the pages is being rendered, the browser shows each of the elements as a rectangular which can be styled using CSS.
!important
>id
>class
>element tag
- This is a one of best-practice which creates a private namespace and thereby helps avoid potential name conflicts between different JavaScript functions and external libraries.
- (Open devTools - top right corners)
- The "===" operators behaves identically to the equality "==" operator, but more strictly, the types must be the same to be considered equal.
for
: goes through an inner code a number of times.for/in
: used for looping through the properties of an objectwhile
: goes through an inner code while a specified condition is truedo/while
: also goes through a block of code while a specified condition is true
An
anti-pattern
is a common response to a recurring problem that is usually ineffective and risks being highly counterproductive.
- Antipatterns are common solutions to common problems where the solution is ineffective and may result in undesired consequences.
- It differentiate from bad practice by:
- It is a common practice that initially looks like an appropriate solution by ends up having bad consequences that outweigh any benefits.
- There’s another solution that is known, repeatable, and effective.
- For example, in object-oriented programming, the idea is to separate the software into small pieces called objects. An anti-pattern in object-oriented programming is a God object which performs a lot of functions which would be better separated into different objects.
StackOverflow: What is an Anti-pattern
Agile Alliance: What is an antipattern?
- DevTools in browsers such as Firefox and Chrome provides decent tools for your to debug and improve website performance.
- Dynatrace
- Internet Live Stats
Quora: What are the tools used for finding bugs in web applications websites
Open Classroom: Optimize your website with DevTools
Do your best to describe the process from the time you type in a website's URL to it finishing loading on your screen.
- Diff. between Expires, Date, Age and If-Modified-...
- Do Not Track
- Cache-Control
- Transfer-Encoding
- ETag
- X-Frame-Options