It appears that a new .one selector was made. There is not any need for the selector. It is already in the selector at the beginning.
Only the margin and necessary information should be entered into the space.
I hope this helps you. Happy coding!
Very much appreciated !! May I ask for an extra question, how will the CSS respond to two same selector as you’ve mentioned above? Would the browser disregard the second one? Or it will just not be working?
If you have two classes, two elements, two ids, etc with the same name that style the same thing then the class that comes last will be the one applied. For example
.colorClass{
color:red;
}
.colorClass{
color: green
}
both classes are the same, and both are trying to change the color. So here since the color green comes last then the color will be green. Its the CSS order of precedence
in your case because margin was never mentioned in your top class then the margin will still apply in the browser that you set in the second class. If you did set a margin in the first class then it would be overridden by the margin in the second class