Chandu yadav has Published 1091 Articles

Create a Vertical Button Group with CSS

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 13:37:30

1K+ Views

You can try to run the following code to create a vertical button groupExampleLive Demo                    .mybtn .button {             background-color: orange;             border: 1px solid green;             width: 120px;             color: white;             font-size: 14px;             padding: 10px;             text-align: center;             text-decoration: none;             display: block;          }                              Result          Result          Result          Result          

How to stream large .mp4 files in HTML5?

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 13:33:51

963 Views

Video files on the web sometimes need to be encoded in a special way in order for them to be played while downloading. In order for flash-based videos to work, data should be moved from the end to the start of the stream. A program called mp4 FastStart can do ... Read More

Is it autofocus=“ autofocus” or autofocus in HTML5?

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 13:31:55

106 Views

As stated by w3.org −The autofocus attribute is a boolean attribute. The presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.If the attribute is present, its value must either be the empty string or a value that ... Read More

uksort() function in PHP

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 12:45:49

85 Views

The uksort() function sorts an array by keys using a user-defined function. It returns TRUE on success and FALSE on failure.Syntaxuksort(arr, custom_function)Parametersarr − The specified array.custom_function − The comparison function. It must return an integer less than, equal to, or greater than zero if the first argument is considered to ... Read More

acos() function in C++ STL

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 11:43:36

1K+ Views

The acos() function returns the inverse cosine of an angle given in radians. It is an inbuilt function in C++ STL.The syntax of the acos() function is given as follows.acos(var)As can be seen from the syntax, the function acos() accepts a parameter var of data type float, double or long ... Read More

How to specify the number of columns an element should be divided into with CSS

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 11:38:36

255 Views

To specify the number of columns an element should be divided into, use the column-count property.You can try to run the following code to implement the column-count property with 4 columnsExampleLive Demo                    .demo {           ... Read More

Usage of CSS grid-column-gap property

Chandu yadav

Chandu yadav

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

99 Views

Set gap between Grid columns with CSS. You can try to run the following code to implement the grid-column-gap property.ExampleLive Demo                    .container {             display: grid;             background-color: green;             grid-template-columns: auto auto;             padding: 20px;             grid-column-gap: 20px;          }         .ele {            background-color: orange;            border: 2px solid gray;            padding: 35px;            font-size: 30px;            text-align: center;         }                     Game Board                1          2          3          4          5          6          

sinh() function in C++ STL

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 10:57:45

184 Views

The sinh() function returns the hyperbolic sine of an angle given in radians. It is an inbuilt function in C++ STL.The syntax of the sinh() function is given as follows.sinh(var)As can be seen from the syntax, the function sinh() accepts a parameter var of data type float, double or long ... Read More

Create a responsive pagination with CSS

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 08:32:29

522 Views

You can try to run the following code to create a responsive pagination with CSSExampleLive Demo                    .demo {             display: inline-block;          }          .demo a {             color: blue;             float: left;             padding: 3px 8px;             text-decoration: none;          }                     Our Quizzes                          

Create a Bordered Button Group with CSS

Chandu yadav

Chandu yadav

Updated on 24-Jun-2020 08:18:05

443 Views

You can try to run the following code to create a bordered button group with border propertyExampleLive Demo                    .btn {             color: black;             background-color: yellow;       ... Read More

Advertisements