Krantik Chavan has Published 308 Articles

Create Hoverable Buttons with CSS

Krantik Chavan

Krantik Chavan

Updated on 24-Jun-2020 08:16:45

310 Views

Use the CSS :hover selector to create hoverable buttons. You can try to run the following code to create hoverable buttons:ExampleLive Demo                    .btn {             background-color: yellow;             color: black; ... Read More

CSS animation-direction property

Krantik Chavan

Krantik Chavan

Updated on 24-Jun-2020 07:00:10

107 Views

Use the animation-direction property to set whether an animation should be played forwards, backward or in alternate cycles.You can try to run the following code to implement the animation-direction property:ExampleLive Demo                    div {             ... Read More

Shorthand property to set all the animation properties with CSS

Krantik Chavan

Krantik Chavan

Updated on 24-Jun-2020 06:11:27

94 Views

The shorthand property to set all the animation properties is animation. It sets the animation duration, animation name, etc.You can try to run the following code to work with animation shorthand property:ExampleLive Demo                    div {         ... Read More

What are the best C++ Books and Guides?

Krantik Chavan

Krantik Chavan

Updated on 23-Jun-2020 13:28:34

87 Views

There are many resources on the web that can help you learn C++. I've tried to give you a compiled list of some of the best resources out there to learn C++ −http://www.tutorialspoint.com/cplusplus/ − This is a great place to learn C++ as it covers almost all basic and intermediate ... Read More

How to set the alignment between the items inside a flexible container when the items do not use all available space with JavaScript?

Krantik Chavan

Krantik Chavan

Updated on 23-Jun-2020 13:00:21

54 Views

Use the alignContent property in JavaScript to set the alignment between the items inside a flexible container.ExampleYou can try to run the following code to implement alignContent property in JavaScript −                    #box {             border: 1px ... Read More

What is to be done when text overflows the containing element with JavaScript?

Krantik Chavan

Krantik Chavan

Updated on 23-Jun-2020 11:36:08

44 Views

Use the textOverflow property to counter the text overflow issue. Add ellipses if the text overflows the containing element.ExampleYou can try to run the following code to learn what is to be done when text overflows the containing element with JavaScript −             ... Read More

Where can I find documentation on formatting a date in JavaScript?

Krantik Chavan

Krantik Chavan

Updated on 23-Jun-2020 06:50:58

37 Views

The Date object is a datatype built into the JavaScript language. Date objects are created with the new Date( ) as shown below −new Date( ) new Date(milliseconds) new Date(datestring) new Date(year, month, date[, hour, minute, second, millisecond ])The following method is used to Manipulate Dates in JavaScript −Sr.NoMethod & ... Read More

Write an example to establish MySQL database connection using PHP script?

Krantik Chavan

Krantik Chavan

Updated on 22-Jun-2020 13:22:49

110 Views

We can use following PHP script to make a MySQL database connection having user ‘guest’ and password ‘guest123’.           Connecting MySQL Server                  

How will GROUP BY clause perform without an aggregate function?

Krantik Chavan

Krantik Chavan

Updated on 22-Jun-2020 12:31:12

3K+ Views

When we use GROUP BY clause in the SELECT statement without using aggregate functions then it would behave like DISTINCT clause. For example, we have the following table −mysql> Select * from Student_info; +------+---------+------------+------------+ | id   | Name    | Address    | Subject    | +------+---------+------------+------------+ | 101 ... Read More

How can we use both built-in-commands (G & g) and semicolon (;) in a single MySQL statement?

Krantik Chavan

Krantik Chavan

Updated on 22-Jun-2020 11:32:31

80 Views

As we know that built-in-commands (\G and \g) send the command to MySQL server for execution and with the help of Semicolon (;) MySQL determines the end of the statement. For using all three and getting the result without error, we need to write three queries, one query with \G, ... Read More

Previous 1 ... 3 4 5 6 7 ... 31 Next
Advertisements