CSS3 Hands-On &MCQ
CSS3 Hands-On &MCQ
html
#shape {
height: 300px;
width: 300px;
margin: autoautoautoauto;
background: tomato;
border: 1pxsolidblack;
animation: colorchange5sinfinite;
animation-duration: 5s;
animation-timing-function: ease-in-out;
animation-delay: 0;
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
animation-duration: alternate;
animation-iteration-count: infinite;
animation-fill-mode: none;
animation-play-state: running;
@keyframes colorchange5sinfinite {
0% {
background: red;
25% {
background: yellow;
50% {
background: blue;
border-radius: 50%;
75% {
background: green;
100% {
background: red;
}
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
html{
width: 100%;
height: 100%;
display: flex;
body{
display: flex;
File Name: styles.css
.container::-webkit-scrollbar {
background-color:#fff;
width:13px
.container::-webkit-scrollbar-track {
background-color: #F5F5F5;
border-radius: 10px;
.container::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #55;
.container {
height: 200px;
width: 300px;
min-width: 150px;
background: #fff;
overflow-y: scroll;
overflow-x: scroll;
.overflow{
min-width: 350px;
min-height:250px;
html{
width: 100%;
height: 100%;
display: flex;
body{
display: flex;
font-size:22px;
font-weight:600;
File Name: styles.css
.menu {
height: 24%;
width: 600px;
margin: auto;
.button{
width: 150px;
height: 32%;
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
background: #333;
color: #e7e7e7;
font-weight: 600;
display: flex;
cursor:pointer;
align-items:center;
justify-content:center;
.button:focus, .button:hover {
background: blue;
.button:focus + .content{
display: block;
.content{
background: #f3f3f3;
width: 440px;
height: 23%;
margin-left: 155px;
display: none;
position:absolute;
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
align-items:center;
justify-content:center;
html{
width: 100%;
height: 100%;
display: flex;
body{
display: flex;
margin: auto;
File Name: styles.css
h1 {
font-size: 25px;
body,html{
min-width:100%;
min-height:100%;
display: flex;
align-items: center;
justify-content: center;
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
.container {
min-height: 30rem;
min-width:50rem;
background-size: cover;
overflow:hidden;
position:relative;
display:flex;
align-items:center;
justify-content:center;
background-image:url(.*bg.jpg.*);
.bird {
width: 88px;
height: 125px;
animation-timing-function: steps(10);
animation-iteration-count: infinite;
animation-duration: 1s;
animation-delay: -0.5s;
background-image:url(.*bird-cells.svg.*);
will-change:background-position;
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
animation-name:fly-cycle;
.bird-container {
top: 20%;
left: -10%;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-duration: 15s;
animation-delay: 0;
position:absolute;
will-change:transform;
transform:scale(.*)translateX(.*);
animation-name:fly-right-one;
@keyframes fly-cycle {
100% {
background-position: -900px 0;
@keyframes fly-right-one {
0% {
}
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
10% {
20% {
30% {
40% {
50% {
60% {
100% {
@keyframes fly-right-two {
https://www.notesbureau.com/2021/07/styling-with-css3-fresco-play-mcqs_5.html
0% {
10% {
20% {
30% {
40% {
50% {
51% {
100% {