123456789101112131415161718192021222324 |
- * {
- padding: 0;
- margin: 0;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- overflow: hidden;
- }
- .anards {
- position: relative;
- width: 100%;
- height: 100%;
- overflow-y: auto;
- }
- .anards::-webkit-scrollbar {
- width:0;
- }
- .anards img {
- width: 100%;
- display: block;
- }
|