What does an empty value for the CSS property content do?

Viewed 1591
nav ul:after { 
    content:""; 
    clear:both; 
    display:block;
}

What does the "" value mean on the content property?

1 Answers
Related