简体   繁体   中英

Ng Bootstrap Carousel Full-screen

I have an angular 5 application and I am using Carousel component from "@ng-bootstrap/ng-bootstrap": "^1.1.2" . I want to preview pictures in full screen but when I press f11 . My picture look like this . I do not know what css to apply in order to prevent the browser from showing the white empty line at the bottom.

You can add the styling to the image

img {
 height: 100vh;
}

you can add:

html,body{height:100%;}
.carousel,.item,.active{height:100%;}
.carousel-inner{height:100%;}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM