mirror of https://gitlab.com/curben/blog
fix(css): Restrict sizing to the page width in all browsers
* especially in mobile browsers
This commit is contained in:
parent
710b9b25a1
commit
9740be51ae
|
@ -224,6 +224,19 @@ h6 {
|
|||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
/*
|
||||
* Restrict sizing to the page width in all browsers (opinionated).
|
||||
* sanitize.css/page.css
|
||||
*/
|
||||
iframe,
|
||||
img,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
|
|
Loading…
Reference in New Issue