I\'m not sure what to call this, but basically let\'s say I have a style that I use a lot,
.somepattern{
font-size:16px;
font-weight:bold;
borde
you can redefine style by adding the style tag to your HTML:
Text
or by applying multiple classes like class="somepattern small".
HTML
Text
CSS
.small {
font-size:5px;
}
the small
class will be applied after the somepattern
class and will therefore override any properties set in the some pattern
class.