During styling you often need to find some element on the screen and see what space it occupies. What do you usually do?
Experience Level:
Junior
Tags:
CSS
Answer
- You can use developer tools (F12) and inspect specifict element.
- You can e.g. in css give the elements border, color, margins, paddaings... then you can see how much space each element occupies.
#main-cointeiner {
border:solid 2px red;
background-color:#2ea920;
margin: 4px 2px 5px 8px;
padding: 3px 2px 1px 2px;
}
Related CSS job interview questions
-
What is CSS class?
CSS Junior -
How do you set fixed height of specific div element?
CSS Junior -
You are styling some element and it is not rendering as you want it to. What do you usually do in such case?
CSS Junior -
How do you set border on an element?
CSS Junior -
What are CSS vendor prefixes?
CSS Junior