InterviewSolution
Saved Bookmarks
| 1. |
Can we disallow flex-items wrap on large screen in Bootstrap 4? |
|
Answer» Use the flex-lg-nowrap class in Bootstrap 4 to not allow flex-item to WRAP on large screen. Use it LIKE this: <DIV class="d-flex flex-lg-nowrap bg-light"> Flex ITEMS . . . </div> |
|