
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Arjun Thakur has Published 1025 Articles

Arjun Thakur
172 Views
The following are the Bootstrap table elements −TagDescriptionWrapping element for displaying data in a tabular formatContainer element for table header rows () to label table columns.Container element for table rows () in the body of the table.Container element for a set of table cells ( or ) that appears on ... Read More

Arjun Thakur
393 Views
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 Live Demo Bootstrap pull-right class ... Read More

Arjun Thakur
846 Views
Bootstrap is an open source, sleek, intuitive, and powerful, mobile first front-end framework for faster and easier web development. The following are the benefits of using Bootstrap −Bootstrap 3, framework consists of Mobile first styles throughout the entire library instead them of in separate files.It is supported by all popular browsers.With ... Read More

Arjun Thakur
6K+ Views
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 Live Demo Bootstrap Example

Arjun Thakur
446 Views
Grid systems are used for creating page layouts through a series of rows and columns that house your content.Here's how the Bootstrap grid system worksRows must be placed within a .container class for proper alignment and padding.Use rows to create horizontal groups of columns.Content should be placed within the columns, ... Read More

Arjun Thakur
195 Views
A Bootstrap Grid for medium and large devices is shown in the following example −Example Live Demo Bootstrap Example Hello, world! ... Read More

Arjun Thakur
198 Views
The shadowBlur property of the HTML canvas is used to set the blur level for shadows. The default value is 0. The element allows you to draw graphics on a web page using JavaScript. Every canvas has two elements that describes the height and width of the canvas i.e. ... Read More

Arjun Thakur
545 Views
To implement animation on vertical-align property with CSS, you can try to run the following code −ExampleLive Demo img { vertical-align: 80px; animation: myanim 3s; } @keyframes myanim { 50% { vertical-align:120px; } } CSS vertical-align property This is demo text. This is demo text. This is demo text. This is demo text.