Dishebh Bhayana has Published 48 Articles

How to arrange text in multi-columns using CSS3?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 11:22:31

83 Views

To arrange text in multi-columns we are using the “column-count” property of CSS3. The “column-count” property is used to divide an HTML element’s content into the number of columns specified. Here we are going to use two different example to demonstrate the application of “colum count” property of CSS ... Read More

How to apply styles to multiple classes at once?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:57:59

2K+ Views

For Applying Styles to Muitliple classes at once we are going to use dot(.) selector and comma(, ). In this article, we will use the dot (.) selector and select all the elements with their class names using the selector and separated by a comma (, ). A “class” is ... Read More

How to Apply Shadow Effect on Text Using CSS?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:57:08

231 Views

We can apply a shadow effect on a text element using the “text-shadow” property given by CSS. The “text-shadow” property takes a list of values that represents X and Y offsets of the shadow from the element, the blur radius of the shadow, and the color of the shadow. These ... Read More

How to apply inline CSS?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:55:43

246 Views

Inline CSS is writing the styles for a particular HTML element inside its “style” attribute. The styles here are unique to the element itself, and generally override the CSS provided internally or externally. CSS is used to apply styling to the HTML elements in a web application, and there are ... Read More

How to apply the hover effect over the button using SASS?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:55:04

6K+ Views

We can apply the hover effect over the button using SASS with the help of the :hover CSS selector.SASS stands for Syntactically Awesome Stylesheet and is a CSS pre-processor, which implies one can generate CSS from its respective SASS code. Using SASS instead of just writing CSS comes with its ... Read More

How to apply custom color to glyphicon icon embed within a link styled with Bootstrap?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:53:56

330 Views

We can use glyphicons in a bootstrap project by simply giving a glyphicon-specific class to a “span” tag in HTML. Glyphicons are basically font icons that can be used anywhere in your web application, for example, in buttons, forms, inputs, texts, etc. They are provided by Bootstrap and usually consist ... Read More

How to apply CSS style using jQuery?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:51:25

6K+ Views

We can use jquery’s .css() method to apply CSS style on the given webpage. jQuery is a javascript library that helps us manipulate the DOM easily and efficiently using its various helper methods and properties. It allows us to add interactivity to the DOM as well as add and ... Read More

How to apply CSS style to the different elements having the same class name in HTML?

Dishebh Bhayana

Dishebh Bhayana

Updated on 22-Feb-2023 10:47:42

3K+ Views

HTML classes are global attributes that are used by HTML tags to specify a list of classes that are case-sensitive in nature. These classes are then used by CSS, to apply styling to that particular tag that has the class, and by Javascript, to manipulate the HTML element’s behavior, interactivity, ... Read More

Advertisements