Correct a same selector that was in 2 files -> creating issue with b tag

This commit is contained in:
meaz 2020-01-05 12:57:28 +01:00
parent 8d222c5949
commit 44b6c1284f
2 changed files with 2 additions and 12 deletions

View File

@ -240,9 +240,9 @@ p.lead {
}
/* for 'em' and 'strong' tags, font-size and line-height should be same with
the body tag due to rendering problems in some browsers */
the body tag due to rendering problems in some browsers (Chrome, Edge, and Safari) */
em { font: 15px/30px 'opensans-italic', sans-serif; }
strong, b { font: 15px/30px 'opensans-bold', sans-serif; }
strong, b { font: 15px/30px 'opensans-bold', sans-serif; font-weight: bolder; }
small { font-size: 11px; line-height: inherit; }
blockquote {

10
css/normalize.css vendored
View File

@ -88,15 +88,6 @@ abbr[title] {
text-decoration: underline dotted; /* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
@ -347,4 +338,3 @@ template {
[hidden] {
display: none;
}