Thursday 22 January 2015

Change in Bootstrap class

If you want to change  "your build in bootstrap class" suppose you want to change the background color of "container" class,

then make your custom css file suppose it is custom.css
in html <head> tag
// link bootstrap build in style sheet here

//and your custom.css below the bootstrap stylesheet
</head>      close headtag
And if you want to change container class

then in custom.css file

.container{
     // write new style here
}


it will apply changes in your html file and new style will be appear.

No comments:

Post a Comment