Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Arjun Thakur
Page 36 of 75
Bootstrap panel-footer class
Use the .panel-footer class in Bootstrap to set footer to panel.You can try to run the following code to implement panel-footer class −Example Bootstrap Example Panel heading Panel content Panel footer
Read MoreIndicate a close icon with Bootstrap
To set a close icon in Bootstrap, use the .close class.You can try to run the following code to set a close icon −Example Bootstrap Example Here's the close icon × Close icon
Read MoreBootstrap .has-success class
The has-success class allows you to set success action for input −Example Bootstrap Example Input with success
Read Morecol-lg-* Bootstrap class
The input-lg is used to set the width of forms in Bootstrap.You can try to run the following code to implement col-lg Bootstrap class −Example Bootstrap Example
Read MoreAdd feedback icons for inputs with Bootstrap
To add feedback icon, use the .has-feedback class in Bootstrap.You can try to run the following code to set feedback icons −Example Bootstrap Example Example
Read MoreAdd information to the table row with Bootstrap
To add information to the table row in Bootstrap, use the .info class in Bootstrap −Example Bootstrap Example Rank of Cricketers The following are the rank of cricketers: Cricketer Rank Virat 1 David 2 Rohit 3 Kenn 4 Steve 5
Read MoreMake an image responsive with Bootstrap
To make an image responsive in Bootstrap, add a class .img-responsive to the tag. This class applies max-width: 100%; and height: auto; to the image so that it scales nicely to the parent element.The following is how you can simply make an image responsive −Example Bootstrap Example
Read MoreBootstrap pull-right class
Use the default around any HTML text. You can also add a tag for identifying the source of the quote and right aligning the blockquote using class .pull-right:Example Bootstrap pull-right class This is a default blockquote example. This is a default blockquote example. This is a default blockquote example.This is a default blockquote example. This is a default blockquote example. This is a blockquote with a source title. Someone famous in Source Title This is a blockquote aligned to the right. Someone famous in Source Title
Read Morelist-unstyled class in Bootstrap
For unstyled list in Bootstrap, use the list-unstyled class.You can try to run the following code to implement the list-unstyled class −Example Bootstrap lists Lists Definition List Unstyled List Item 1 Item 2 Item 3 Item 4 Vegetables (UnOrdered List) Tomato Brinjal Broccoli
Read MoreClearing input buffer in C/C++
In C/C++, an input buffer is a temporary storage area where the program processes the input. Suppose, you are an user and you type some characters using a keyboard but those characters are not passed to the program directly because it involves several layers of handling such as keyboard firmware, OS input queues, and event processing. So, they first proceed with the collection of an input buffer. Next, when the program is ready, it reads from the buffer. How Input Buffer Affects a Program? The input buffer affected to the program when we are using the functions like scanf() or ...
Read More