mystyles.css 328 B

123456789101112131415161718
  1. @media only screen and (max-width: 767px) {
  2. .txtContent {
  3. }
  4. /* 其他移动端样式 */
  5. }
  6. /* 平板/电脑端设备(通常 ≥ 768px) */
  7. @media only screen and (min-width: 768px) {
  8. .txtContent {
  9. width: 55%;
  10. text-align: left;
  11. margin: 0 auto;
  12. }
  13. /* 其他电脑端样式 */
  14. }