Add a Red Border to an Element in Bootstrap to Indicate Danger

Alex Onsman
Updated on 18-Jun-2020 12:20:02

2K+ Views

To add a red border to an element, you need to implement the border-danger class.Red border implement danger and you can set danger messages inside it.Implementing the border-danger is quite easy −   Red Border Let us see an example to work with the border-danger Bootstrap 4 class −ExampleLive Demo       Bootstrap Example                             .new {       width: 120px;       height: 120px;       margin: 20px;     }             Rectangle with red border:     Red Border  

Set a Border to an Element in Bootstrap

Amit Diwan
Updated on 18-Jun-2020 12:18:29

117 Views

To set a border indicating information, use the border-info class.To implement it −   Information Let us see an example to implement the border-info class −ExampleLive Demo       Bootstrap Example                             .one {       width: 200px;       height: 240px;       margin: 40px;     }             Rectangle with a border indicating information:     Information  

Bootstrap 4 Border Light Class

David Meador
Updated on 18-Jun-2020 12:17:03

274 Views

Use the border-light class in Bootstrap 4, to set a light gray border to an element as shown below   light border Style for the demo class is for the element −.demo {   width: 150px;   height: 220px;   margin: 15px; }Learn how to work with the border-light class in Bootstrap −ExampleLive Demo       Bootstrap Example                             .demo {         width: 150px;       height: 220px;       margin: 15px;     }             Bootstrap 4     light border  

Remove Borders from an Element in Bootstrap

Amit Diwan
Updated on 18-Jun-2020 12:15:04

3K+ Views

Use the border-0 class in Bootstrap 4 to remove all borders from an element in Bootstrap 4 −   no border Above, we have the div class to no-border class and this allow us to remove the borders from the element.Let us see an example to implement the border-0 class in Bootstrap −ExampleLive Demo       Bootstrap Example                            .mystyle {      width: 120px;      height: 100px;      margin: 10px;      background: maroon;    }             Rectangle     no border  

Convert Unix Timestamp to Time in JavaScript

Smita Kapse
Updated on 18-Jun-2020 12:14:03

257 Views

To convert a Unix timestamp to time, you can try to run the following code in JavaScript −ExampleLive Demo           JavaScript Dates                        var unix_time = 1514791901 ;          var date = new Date(unix_time*1000);          // get hours          var hrs = date.getHours();          // get minutes          var min = "0" + date.getMinutes();          // get seconds          var sec = "0" + date.getSeconds();          document.write("Time- "+hrs + ":" + min.substr(-2) + ":" + sec.substr(-2));           OutputTime- 13:01:41

Automatic Resource Management in Java

Samual Sam
Updated on 18-Jun-2020 12:13:37

931 Views

automatic resource management or try-with-resources is a new exception handling mechanism that was introduced in Java 7, which automatically closes the resources used within the try-catch block.ResourceA resource is an object which is required to be closed once our program finishes. For example, a file is read, database connection and so on.UsageTo use the try-with-resources statement, you simply need to declare the required resources within the parenthesis, and the created resource will be closed automatically at the end of the block. Following is the syntax of the try-with-resources statement.Syntaxtry(FileReader fr = new FileReader("file path")) {        // use the resource ... Read More

Create JavaScript Date Object from Date String

Nitya Raut
Updated on 18-Jun-2020 12:13:04

313 Views

To create a date object from date string, just add the string like this −var date = new Date(2018,1,1);ExampleYou can try to run the following code to create date object from date string. Here, the month is indexed as 0 for Jan, 1 for Feb, etc in JavaScript −Live Demo           JavaScript Dates                        var date;          date = new Date(2018,0,1);          document.write("Current Date: "+date);           OutputCurrent Date: Mon Jan 01 2018 00:00:00 GMT+0530 (India Standard Time)

Bootstrap Modal Show Method

David Meador
Updated on 18-Jun-2020 12:09:37

4K+ Views

The modal(“show”) method opens a modal like below −The modal is displayed using the modal(“show”) method as shown below −$("#newModal").modal("show");Let us see an example of modal(“show”) method −ExampleLive Demo       Bootstrap Example                             #button1 {       width: 140px;       padding: 20px;       bottom: 150px;       z-index: 9999;       font-size: 15px;       position: absolute;       margin: 0 auto;     }     ... Read More

Align Flex Items Around on Different Screen Sizes in Bootstrap

Alex Onsman
Updated on 18-Jun-2020 12:00:09

222 Views

To align flex items around on different screen sizes, use the justify-content-*-around class.You can achieve the following result that justifies content on small and medium screen sizes −To implement the justify-content-*-around class in Bootstrap −ExampleLive Demo       Bootstrap Example                             Default           ANS 1       ANS 2       ANS 3         Small Screen Size           ANS 1       ANS 2       ANS 3         Medium Screen Size           ANS 1       ANS 2       ANS 3         Large Screen Size           ANS 1       ANS 2       ANS 3      

Get Current Date and Time in Seconds in JavaScript

Abhinanda Shri
Updated on 18-Jun-2020 12:00:07

712 Views

To convert time in seconds, firstly get the current time. Then, multiply the hours to 3600 and minutes to 60; rest you can see below −(hours*3600) + (min*60) + secExampleYou can try to run the following code to get the current time in seconds −Live Demo           JavaScript Get Seconds                        var dt = new Date();          var sec = dt.getSeconds();          document.write("Seconds: " + sec);          var min = dt.getMinutes();          document.write("Minutes: " + min);          var hrs = dt.getHours();          document.write("Hours: " + hrs);          var total_seconds = (hrs*3600) + (min*60) + sec;          document.write("Total seconds: " + total_seconds) ;           OutputSeconds: 35 Minutes: 37 Hours: 9 Total seconds: 34655

Advertisements