Day5
#100DaysOfCode
Applied Visual Design: Change an Element's Relative Position
Property Position:
Position: Relative;
p {position: relative;
bottom: 10px;
}
Position: Absolute;
The next option for the CSS position property is absolute, which locks the element in place relative to its parent container. Unlike the relative position, this removes the element from the normal flow of the document, so surrounding items ignore it. The CSS offset properties (top or bottom and left or right) are used to adjust the position.
Position: fixed;
Property float:
float: left; float: right...
Property z-index;
When elements are positioned to overlap, the element coming later in the HTML markup will, by default, appear on the top of the other elements. However, the z-indexproperty can specify the order of how elements are stacked on top of one another. It must be an integer (i.e. a whole number and not a decimal), and higher values for the z-indexproperty of an element move it higher in the stack than those with lower values.Applied Visual Design: Learn about Complementary Colors
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-about-complementary-colors
Some examples of complementary colors with their hex codes are:
red (#FF0000) and cyan (#00FFFF)
green (#00FF00) and magenta (#FF00FF)
blue (#0000FF) and yellow (#FFFF00)
<!-- my ref -->
Loved this style:
background: linear-gradient(53deg, #ccfffc, #ffcccf)
<!-- end my ref -->
green (#00FF00) and magenta (#FF00FF)
blue (#0000FF) and yellow (#FFFF00)
Tertiary Colors
| Color | Hex Code |
|---|---|
| orange | #FF7D00 |
| cyan | #00FFFF |
| raspberry | #FF007D |
<!-- my ref -->
Loved this style:
background: linear-gradient(53deg, #ccfffc, #ffcccf)
<!-- end my ref -->
#100DaysOfFitness
Cycling 14km in 57min.— Vasant Patil (@vasantvp24) August 5, 2018
Exercise for 20min.#Day5 #100DaysofFitness #100DaysofWorkout pic.twitter.com/HpDhMUQKRk
Comments
Post a Comment