Resizes the pictures that are too big, and fit them to the screen width.
当前为
/* ==UserStyle==
@name Slengpung.com Pictures adjusted to screen
@description Resizes the pictures that are too big, and fit them to the screen width.
@version 0.0.1.20200814212604
@namespace https://greasyfork.org/users/676264
==/UserStyle== */
@-moz-document url-prefix("http://www.slengpung.com/v3/show_photo.php") {
html,
body,
body > table {
width: 100%;
}
body > table {
width: 100% !important;
}
body > br {
display: none;
}
body > table > tbody > tr:nth-child(2) > td > img {
max-width: 100%;
width: auto !important;
height: auto !important;
}
}