forked from mirror/_s
Added new style rule which sets left & right margins for 'Figure' elements to 0px (currently 40px via normalize.css) because margin is causing extra wide images (i.e. 1200px) to overflow the content area.
This commit is contained in:
parent
4cda33a52e
commit
592201e885
|
@ -411,6 +411,10 @@ img {
|
||||||
max-width: 100%; /* Adhere to container width. */
|
max-width: 100%; /* Adhere to container width. */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
margin: 0 0 1.5em;
|
margin: 0 0 1.5em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Reference in New Issue