I'm using Bootstrap in v3.0 and parsing the CSS
file %, I found this excerpt:
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
I'd like to know what the *
usage is.
In the current version of Bootstrap (3.3.4), , it is within a @media Print{}
, like this:
@media print {
*,
*:before,
*:after {
color: #000 !important;
text-shadow: none !important;
background: transparent !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
I would like to know, what is this code for?