Question: Why Use Bootstrap?
- Responsive features: Website built using bootstrop will automatically adjust themselves on all devices like all type phone, ipad, and all type of desktop/laptop.
- Bootstrap is compatibile with all browser (mobile and desktop).
- Easy to start.
- Fast development
Question: How to start Bootstrap without downloading?
Just including following files in web page, and start working on bootstrp.
Question: What doctype use by bootstrap?
Just including following files in web page, and start working on bootstrap.
HTML5 doctype
Question: What are meta tag require to set for proper rending in mobile?
<meta name="viewport" content="width=device-width, initial-scale=1">
Question: Which main class need to declare for fixed layout and fluid layout?
.container For fixed layout.
.container-fluid For fluid layout.
Question: How many column are allowed in Bootstrap Grid System?
12
Question: How many Grid Classes are available in Bootstrap Grid System?
4
- xs: phones
- sm : tablets
- md : desktops
- lg : large desktops
Question: Basic Structure of a Bootstrap Grid?
Question: What are Structure of Bootstrap Grid?
Question: What are the classes used for Success and warning?
.bg-primary: Important message.
.bg-success: successful message.
.bg-info: Informatoinal message.
.bg-warning: Warning message.
.bg-danger: Represent message.
Question: How to make an image Rounded Corners?
Just add below class in img tag.
.img-rounded
Question: How to make an image Responsive?
Just add below class in img tag.
.img-responsive
Question: How to make an youtube video as Responsive?
Just add below class in iframe tag.
.embed-responsive-item
Question: How to make an div with rounded border?
Just add below class in tag.
.well
Question: How to make display successful or failure message with cross link?