I noticed this (me) curious css style in the default Site.css file of the ASP.NET MVC project by default:
.text-box.multi-line
{
height: 6.5em;
}
Is it .text-box.multi-linejust the name of the class where the dot is in the middle, or is it an embedding of two classes? Or is it completely different? Can you explain?
And can you provide a usage example?
Edit
Thanks for all the answers. This seems to be an omission from the w3schools css page .
source
share