Krantik Chavan has Published 308 Articles

Bootstrap table-condensed class

Krantik Chavan

Krantik Chavan

Updated on 12-Jun-2020 16:31:14

650 Views

Using the .table-condensed class, row padding is cut in half to condense the table. as seen in the following example. This is useful if you want any denser information.You can try to run the following code to implement table-condensed class in Bootstrap −ExampleLive Demo           ... Read More

img-thumbnail Bootstrap class

Krantik Chavan

Krantik Chavan

Updated on 12-Jun-2020 15:59:52

182 Views

Use the .img-thumbnail Bootstrap class to add thumbnail to images.You can try to run the following code to implement the img-thumbnail class:Example Live Demo           Bootstrap Images                                 Styling images with Bootstrap       Original Image             Thumbnail Image          

What is an alert box in JavaScript?

Krantik Chavan

Krantik Chavan

Updated on 12-Jun-2020 13:58:13

1K+ Views

An alert dialog box is mostly used to give a warning message to the users. For example, if one input field requires to enter some text but the user does not provide any input, then as a part of validation, you can use an alert box to give a warning ... Read More

Animate CSS outline-offset property

Krantik Chavan

Krantik Chavan

Updated on 12-Jun-2020 08:41:33

275 Views

To implement animation on outline-offset property with CSS, you can try to run the following code −ExampleLive Demo                    div {             width: 350px;             height: 150px;             outline: 2px solid blue;             animation: myanim 3s infinite;          }          @keyframes myanim {             50% {               outline-offset: 50px;             }          }                     CSS outline-offset property          

What is the difference between BLOB and CLOB datatypes?

Krantik Chavan

Krantik Chavan

Updated on 07-Jun-2020 07:10:46

11K+ Views

Blob and Clob together are known as LOB(Large Object Type). The following are the major differences between Blob and Clob data types.BlobClobThe full form of Blob is a Binary Large Object.The full form of Clob is Character Large Object.This is used to store large binary data.This is used to store ... Read More

How to specify whether the content of an element should be translated or not in HTML?

Krantik Chavan

Krantik Chavan

Updated on 01-Jun-2020 09:25:06

77 Views

The translate attribute is useful to set that the content of an element is to be translated or not.The following are the attributes −AttributeValueDescriptionYesThe content should be translated.NoThe content should not be translated.If you did not want a specific word to be translated, then add it to the translate attribute ... Read More

In HTML how to create table header?

Krantik Chavan

Krantik Chavan

Updated on 27-May-2020 22:28:51

449 Views

Use the tag in HTML to create table header. The HTML tag is used in adding a header to a table. The thead tag is used in conjunction with the tbody tag and the tfoot tag in determining each part of the table (header, footer, body).The HTML ... Read More

What is the role of pageX Mouse Event in JavaScript?

Krantik Chavan

Krantik Chavan

Updated on 23-May-2020 09:33:19

266 Views

When a mouse event is triggered, the pageX mouse event property is used to get the horizontal coordinate of the mouse pointer. The coordinate is relative to the screen.ExampleYou can try to run the following code to learn how to implement pageX Mouse event in JavaScript.         ... Read More

How to call a stored procedure using callable statement in JDBC explain?

Krantik Chavan

Krantik Chavan

Updated on 09-Mar-2020 06:37:08

3K+ Views

You can call the SQL stored procedures using the CallableStatement interface. A Callable statement can have input parameters, output parameters, or both.You can create an object of the CallableStatement (interface) using the prepareCall() method of the Connection interface. This method accepts a string variable representing a query to call the ... Read More

What are stored procedures? How to call stored procedures using JDBC program?

Krantik Chavan

Krantik Chavan

Updated on 09-Mar-2020 06:32:51

338 Views

Stored procedures are sub routines, segment of SQL statements which are stored in SQL catalog. All the applications that can access Relational databases (Java, Python, PHP etc.), can access these procedures.Stored procedures contain IN and OUT parameters, or both. They may return result sets in case you use SELECT statements, ... Read More

Previous 1 ... 6 7 8 9 10 ... 31 Next
Advertisements