rotate css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.tourne {
transform: rotate(45deg); /* Équivalent à rotateZ(45deg) */
background-color: pink;
}
rotate css
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.tourne {
transform: rotate(45deg); /* Équivalent à rotateZ(45deg) */
background-color: pink;
}
hide element using css
#tinynav1
{
display:none
}
css display
/* legacy values */
display: block;
display: inline;
display: inline-block;
display: flex;
display: inline-flex;
display: grid;
display: inline-grid;
display: flow-root;
/* box generation */
display: none;
display: contents;
/* two-value syntax */
display: block flow;
display: inline flow;
display: inline flow-root;
display: block flex;
display: inline flex;
display: block grid;
display: inline grid;
display: block flow-root;
/* other values */
display: table;
display: table-row; /* all table elements have an equivalent CSS display value */
display: list-item;
/* Global values */
display: inherit;
display: initial;
display: revert;
display: unset;
display in css
.d_in {
display: inline;
/* This causes a block-level element to act like an inline element. */
}
.d_b {
display: block;
/* This causes an inline element to act like a block-level element. */
}
.d_in_b {
display: inline-block;
/* This causes a block-level element to flow like an inline element
Compared to display: inline, the major difference is that
display: inline-block allows to set a width and height on the element.
Also, with display: inline-block, the top and bottom margins/paddings
are respected, but with display: inline they are not.
*/
}
.d_n {
display: none;
/* This hides an element from the page. */
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us