次のようなcssコードがあります。
@charset "utf-8";
/* long code just an example of top */
.show_hide_top a.showLink { /* small red link */
left: 39% !important;
padding-left: 8px;
top: 15% ;
}
@media only screen and (min-width: 1300px) and (max-width:1500px) {
/* long code for these devices ex: */
.show_hide_top a.showLink {
left: 39% !important;
padding-left: 8px;
top: 18% ;
}
}
@media only screen and (min-width: 769px) and (max-width:1299px) {
code for these devices
}
@media only screen and (min-width:481px) and (max-width: 768px) {
code for these devices
}
ただし、私のコンピューター (1600) は 1300-1500 のメディア コードを取得します。何か(おそらくばかげた)が間違っています。
ご意見ありがとうございます。