When it comes to CSS, the default value for margin-left is 0. It's interesting that no units are needed when the value is 0 since it doesn't matter if it's in em or px. However, I recently came across some code at my company that specifies:
margin-left: 10;
I assume this means 10px by default? I plan on experimenting with both em and px to determine which looks better.