-`text-decoration-line`: Sets the kind of decoration used, such as underline or line-through.
-`text-decoration-color`: Sets the color of the decoration.
-`text-decoration-style`: Sets the style of the line used for the decoration, such as solid, wavy, or dashed.
-`text-decoration-thickness`: Sets the thickness of the line used for the decoration.
`text-align` values:
-`start`: The same as left if direction is left-to-right and right if direction is right-to-left.
-`end`: The same as right if direction is left-to-right and left if direction is right-to-left.
-`left`: The inline contents are aligned to the left edge of the line box.
-`right`: The inline contents are aligned to the right edge of the line box.
-`center`: The inline contents are centered within the line box.
-`justify`: The inline contents are justified. Text should be spaced to line up its left and right edges to the left and right edges of the line box, except for the last line.
-`justify-all`: Same as justify, but also forces the last line to be justified.
-`match-parent`: Similar to inherit, but the values start and end are calculated according to the parent's direction and are replaced by the appropriate left or right value.
### Width
Sets the width of a block-level element or img; does not work for inline elements (unless their display property is changed).
The aspect-ratio CSS property sets a preferred aspect ratio for the box, which will be used in the calculation of auto sizes and some other layout functions.
Clearing tells the element on which side (right, left, both) other elements cannot
appear.
Clearing both ensures the element doesn't wrap next to floats on either side.
```css
selector {
clear: right;
clear: left;
clear: both;
}
```
### Static Positioning
All HTML elements are positioned static by default.
Static elements are positioned in the normal flow of the page.
Static elements ignore top, bottom, right, or left property specifications.
In normal flow block elements flow from top to bottom making a new line after every element.
In normal flow inline elements flow from left to right wrapping to next line when needed.
```css
selector {
position: static;
}
```
### Relative positioning
Takes the element out of the normal flow, allowing it to be moved in relation to the top, bottom, right, or left but does not affect the elements surrounding it.
Makes an element a "positioning context" in which to position other elements relative to it.
The relative value will still put the element in the normal flow, but then offset it according to top, bottom, right and left properties.
```css
selector {
position: relative;
}
```
### Absolute Positioning
Positions element outside of the normal flow and other elements act as if it's not there.
An absolutely positioned element is offset from its container block, set with the properties top, bottom, right and left.
Its container block is the first surrounding element that has any position other than static.
If no such element is found, the container block is `<html>`.
```css
selector {
position: absolute;
}
```
### Fixed Positioning
The fixed value takes an element out of the normal flow, it positions it relative to the viewport.
Parent positioning will no longer affect fixed elements.
```css
selector {
position: fixed;
}
```
### Sticky Positioning
Sticky positioning is a hybrid of relative and fixed positioning.
The element is treated as relative positioned until it crosses a specified threshold, at which point it is treated as fixed positioned.
```css
selector {
position: sticky;
position: -webkit-sticky;
}
```
`Note`: sticky is not supported by IE and still needs to be prefixed for webkit based browsers
### Z-Index
When elements overlap, the order of overlapping can be changed with z-index:
- The element with highest z-index goes on top
- Without z-index, elements stack in the order that they appear in the DOM
- Elements with non-static positioning will always appear on top of elements with default static positioning
The `clamp()` CSS function clamps a value between an upper and lower bound. It takes three parameters: a minimum value, a preferred value, and a maximum allowed value.
The `clamp()` function can be used anywhere a `<length>`, `<frequency>`, `<angle>`, `<time>`, `<percentage>`, `<number>`, or `<integer>` is allowed.
clamp(MIN, VAL, MAX) is resolved as max(MIN, min(VAL, MAX))
```css
selector {
length: clamp(MIN, VAL, MAX) /* is resolved as max(MIN, min(VAL, MAX)) */
}
```
### Var & Variables
```css
:root {
/* define variables on :root element */
--variable: value;
}
selector {
--variable: value; /* overwrite value */
prop: var(--variable); /* use value of variable */
Use proto-content instead of non-contextual placeholders such as Lorem Ipsum
Use existing content, draft content, or sample content
5.**Understand content and technological requirements early**:
Start discussions early across different disciplines: content, UX, design and development
Have discussions around the required technology to deliver content
Modify the development platform to accommodate the content rr design the content with the limitations of the development platform in mind
## Mobile First
Mobile phones are an integral part of our lives. More than 50% of all global web traffic comes from mobile phones.
Google looks at the mobile version before the desktop when ranking a site. Users have a higher trust in websites that are have an excellent mobile UX. Easier to progress from more straightforward outline and functionality to complex solutions.
### How To Work Mobile First
- Mobile-first coding:
- If you use a framework, make sure it's mobile-first
- If you write custom code, always prioritize mobile
- Code elements as mobile-first
- Intuitive and user-friendly interactions
- Clear CTAs (Call to Action)
- Super quick loading
- Optimise your content (mobile first usually implies content-first)
- Relevant, easy to read quickly content (divide long text)
- Scroll rather than click
- Help users find what they are looking for quickly
- Use fonts that display well on mobile
## Responsive Design And Development
A **responsive** website or application automatically adjusts to the screen and adapts to any device.
Responsiveness is a feature of a web page: Is an outcome of specific web development techniques and usually implies mobile-first but does not require it.
Is achieved by deploying media queries that change the default CSS styles and/or modify the layout
*Designers*:
- Used to start from the desktop version
- The mobile version was an afterthought
- Today it's common to design for mobile-first
- Design the desktop version by scaling up and adding features
*Developers*:
- Used to develop for the desktop first
- Mobile development is more painful and requires more knowledge, more testing and more creativity in problem solving
*Teams*:
- More collaboration between multiple disciplines: Copy, UI, UX, developers
- More coordination, adaptation and iteration
### Breakpoints
Breakpoints are often defined in collaboration with UI/UX designers.
There are no defined standard for widths to target in media queries so any reasonable set of increments is enough to target most devices.
The aim is to have sufficient breakpoints to target smartphones, tablets, laptops, and desktops.
Some of the most common widths used:
-`320px`
-`480px`
-`576px`
-`768px`
-`992px`
-`1024px`
-`1200px`
Example of *Bootstrap* (front-end framework) breakpoints:
```css
/* Extra small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}
```
### Viewport Metatag
Is located in the `<head>` of the HTML document. It defines how a site should render in a web browser for mobile devices and makes media queries will work as intended.
**Logical operators**: Logically represent `and`, `or`, `not`. The `or` logic is represented by a comma (just like in CSS selectors)
It's possible to specify a media attribute in the link element. This applies a whole stylesheet when the condition is true. Possible to do but preferable to specify a single stylesheet with individual media queries.
```html
<linkrel="stylesheet"media="screen and (min-width: 900px)"href="widescreen.css">
<linkrel="stylesheet"media="screen and (max-width: 600px)"href="smallscreen.css">
```
It's also possible to have different stylesheets based on media type. This might make sense for some use cases.