Let's apply a style to all div elements by creating a rule that sets margin-bottom to 10px.
div
margin-bottom
10px
Make sure to pick div followed by { and then margin-bottom: 10px;, }.
{
margin-bottom: 10px;
}