Test of CSS knowledge - Part 5
Set of multiple choice questions about CSS programming language, invite readers to test their knowledge on this topic. With 15 questions including many answers, choose the best answer.
Question 1: How to round the edge of the elements?
alpha-effect: round-corner;
Question 2: How to add shadows to elements in CSS3?
box-shadow: 10px 10px 5px gray;
shadow-right: 10px shadow-bottom: 10px;
alpha-effect [shadow]: 10px 10px 5px gray;
Question 3: How to add images that appear on the border for elements in CSS3?
border-variable: image url (image.png);
border-image: url (border.png) 30 30 round;
Do not add images that appear on the border
Question 4: How to resize the background image with CSS3?
background-size: 80px 60px;
bg-dimensions: 80px 60px;
background-proportion: 80px 60px;
D. alpha-effect: bg-resize 80px 60px;
Question 5: How to add shadow to text with CSS3?
font: shadowed 5px 5px 5px gray;
font-shadow: 5px 5px 5px gray;
text-shadow: 5px 5px 5px gray;
shadow: text 5px 5px 5px gray;
Question 6: How to force the text to stream?
Question 7: Where is the valid transformation (transform) command in CSS3?
Question 8: How to rotate elements in CSS3?
transform: rotate (30deg);
transform: rotate-30deg-clockwise;
Question 9: What is the way to convert the size / element ratio with CSS3?
Question 10: How to create transition transitions with CSS3?
transition-duration: 2s; transition-effect: width;
alpha-effect: transition (width, 2s);
Question 11: Is the following true or false?
Box-shadow is supported by all browsers
Question 12: Which additional prefixes do CSS3 properties work on the old Mozilla Firefox browser?
Question 13: What are the first three values of text-shadow in order?
vertical, blur, horizontal
blur, vertical, horizontal
vertical, horizontal, blur
horizontal, vertical, blur
Question 14: 4 What is the value of border-radius?
top-left, top-right, bottom-right, bottom-left
bottom-left, bottom-right, top-right, top-left
Question 15: What does RGBa mean?