Kristi Castro has Published 104 Articles

Style Bootstrap 4 card with bg-warning class

Kristi Castro

Kristi Castro

Updated on 18-Jun-2020 07:46:24

281 Views

Use the bg-warning class with the card class in Bootstrap to set warning action on a Bootstrap card.Set warning messages like −Do not cross! High Voltage!Use the below code to style a Bootstrap card −   You are trespassing on private property! You can try to run the following code ... Read More

Align a flex item in the center on different screens in Bootstrap 4

Kristi Castro

Kristi Castro

Updated on 18-Jun-2020 07:44:10

328 Views

To align a flex item in the center on different screens in Bootstrap 4, use the .align-self-*-center class.Set it on different screens like small, medium, large, etc −Align a flex item in the center on small screen   A-one   B-one   C-one   D-one Align a flex item in ... Read More

Bootstrap 4 .card-img-bottom class

Kristi Castro

Kristi Castro

Updated on 17-Jun-2020 15:09:23

320 Views

Use the card-img-bottom class in Bootstrap 4 to place an image at the bottom inside a Bootstrap 4 card.Set the card body, and within that, the card title and card text −   Quantitative Aptitude   For Entrance Exams   Sample Questions Now set image with class “card-img-bottom”−Let us see ... Read More

Bootstrap .tooltip("toggle") method

Kristi Castro

Kristi Castro

Updated on 17-Jun-2020 15:07:38

436 Views

Use the tooltip(“toggle”) method in Bootstrap to togle the tooltip.The tooltip generates on clicking the button shown below −   Toggle Tooltip Toggle the tooltip on button click like the following code snippet −$(".btn-info").click(function(){   $("[data-toggle='tooltip']").tooltip('toggle'); });You can try to run the following code to implement the tooltip(“toggle”) method −ExampleLive ... Read More

Stretch a flex item in Bootstrap 4

Kristi Castro

Kristi Castro

Updated on 17-Jun-2020 15:05:39

402 Views

To stretch a flex item in Bootstrap 4, use the .align-self-stretch class.     Here, the 2nd flex item is stretched using the align-self-stretch class in Bootstrap −   A-one   B-one   C-one   D-one You can try to run the following code to stretch a flex item −ExampleLive Demo ... Read More

How to implement Bootstrap 4 .flex-*-nowrap class

Kristi Castro

Kristi Castro

Updated on 17-Jun-2020 14:38:26

168 Views

The flex-*-nowrap class works like flex-no-wrap class to avoid wrapping of flex items.However, if you want to avoid wrapping on different screen sizes, then use the flex-*-no-wrap class like −flex-lg-nowrap: Avoid wrapping on large screen sizeflex-sm-nowrap: Avoid wrapping on small screen sizeflex-md-nowrap: Avoid wrapping on medium screen sizeThe following is ... Read More

The benefits of good Database Design

Kristi Castro

Kristi Castro

Updated on 15-Jun-2020 12:55:03

2K+ Views

A good database design has many benefits and is a goal to achieve for every DBA −Easy Retrieval of InformationIf the design is developed properly, then it would be easier to retrieve information. Correct design means the tables, constraints, and relationships created are flawless.Easier ModificationChanges that you make to the ... Read More

Many-to-Many Relationship in DBMS

Kristi Castro

Kristi Castro

Updated on 15-Jun-2020 12:53:45

9K+ Views

Many-to-Many relationship in DBMS is a relationship between more than one instance of an entity with more than one instance of another entity i.e. both the entities can have many relationships between each other.The relation can be stated as −Let us see an example −Many Authors can write a Book, ... Read More

Zombie vs Orphan vs Daemon Processes

Kristi Castro

Kristi Castro

Updated on 31-Jan-2020 10:39:05

4K+ Views

Details about the zombie, orphan and daemon processes are given as follows −Zombie ProcessesA zombie process is a process whose execution is completed but it still has an entry in the process table. Zombie processes usually occur for child processes, as the parent process still needs to read its child’s ... Read More

Major issues with Multi-threaded Programs

Kristi Castro

Kristi Castro

Updated on 31-Jan-2020 10:24:32

6K+ Views

Multithreaded programs allow the execution of multiple parts of a program at the same time. These parts are known as threads and are lightweight processes available within the process.Threads improve the application performance using parallelism. They share information like data segment, code segment files etc. with their peer threads while ... Read More

Advertisements