| 123456789101112131415161718 |
- @media only screen and (max-width: 767px) {
- .txtContent {
- }
- /* 其他移动端样式 */
- }
- /* 平板/电脑端设备(通常 ≥ 768px) */
- @media only screen and (min-width: 768px) {
- .txtContent {
- width: 55%;
- text-align: left;
- margin: 0 auto;
- }
- /* 其他电脑端样式 */
- }
|