InterviewSolution
Saved Bookmarks
| 1. |
Which of the following fades the model in and out?(a) .modal-content(b) .moal-lg(c) .fade(d) .modal-smI had been asked this question in an online interview.This question is from Responsive Overview in chapter Advance HTML of HTML |
|
Answer» RIGHT answer is (c) .fade Easiest EXPLANATION: .fade adds an animation or transition effect which fades modal in and out, .modal-sm specifies a small modal, .modal-lg specifies a LARGE modal, .modal-content style modal properly with BORDER, background-color etc. |
|