
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
Ricky Barnes has Published 119 Articles

Ricky Barnes
431 Views
Use the .flex-*- column class in Bootstrap to show flex items vertically on different screen sizes:Set it vertically on small, medium, large, etc screen size. Let us see it on small and medium screen size:Small Screen SizeFlex on different screen size (Small) One Two Three Medium ... Read More

Ricky Barnes
300 Views
Use the border-top-0 class in Bootstrap 4 to remove the top border.Set the border-top-0 class − Rectangle is missing the TOP border. Let us see an example to implement the border-top-0 class −ExampleLive Demo Bootstrap Example ... Read More

Ricky Barnes
199 Views
To set orange border to an element, use the border-warning class − Danger (Orange border) Set the style for the element − .mystyle { width: 200px; height: 100px; margin: 10px; } Let us see an example to implement the border-warning class in Bootstrap −ExampleLive Demo ... Read More

Ricky Barnes
153 Views
Use the border-white class in Bootstrap 4 to set white border to an element. This has white border The test class above styles the element as shown below − .test { width: 120px; height: 100px; margin: 10px; background: blue; } Let us see an example ... Read More

Ricky Barnes
315 Views
Use the border-0 class in Bootstrap to eliminate all borders from an element as shown below − No border We have also set CSS style above −.mystyle { width: 120px; height: 100px; margin: 10px; background: gray; }You can try to run the following code to ... Read More

Ricky Barnes
321 Views
Use the .btn-outline-dark class in Bootstrap to set dark outline on a button.The following is an example of a button with dark outline −Set the above outline to the button, using the btn-outline-dark class as shown below − Submit You can try to run the following code to implement ... Read More

Ricky Barnes
144 Views
You can wrap the flex items on difference screen sizes, using the flex-*-nowrap class. As shown below, wrapping is avoided here −The above avoids wrapping of flex item on small and large screen size using the following code snippet −Flex items won't wrap (small screen size) Ques 1 ... Read More

Ricky Barnes
296 Views
Use the .flex-grow-0|1 class in Bootstrap to allow a singly lex item to take up rest of the space in the flex.For example, the following takes rest of the space in the right −The above is set by adding flex-grow class for the last flex-item − P Q ... Read More

Ricky Barnes
360 Views
To set flex items to equal width on different screens, use the the flex-*-fill class.For small width screen, use flex-sm-fill − A For large width screen, use flex-lg-fill − A The following is an example to give euqla width to flex items on different screens −ExampleLive Demo ... Read More