I am facing an issue where I need to utilize one property from a CSS class in another CSS class.
.class_a {margin:10px; width: 360px; float: left; color:#ffffff; ...etc...}
.class_b { use the margin property of .class_a }
Only utilize the margin property of .class_a within class_b
Thanks!