Crus4

logo

CSS display Property

CSS display Property The CSS display Property is used to control how an HTML Element is displayed on the web page. Here is a syntax of an CSS display Property. Syntax: Here is the list of all the possible values that a display property can take, along with their description. Value Description inline This value […]

How to Style a Table With CSS

How to Style a Table With CSS In order to make your website look great, you must style every single section of your website. In this article, we will see how you can style a Table that is present on your webpage with CSS. What are HTML Tables HTML Tables are used to store data […]

Styling List in CSS

Styling List in CSS We all want to make our webpage stylish. Because a stylish webpage engages the user and helps us to get more visitors on our website. We can style our webpage by various ways, today we will see how we can style HTML Lists with CSS. Styling List in CSS CSS – […]

Style Links in CSS

Style Links in CSS We all know that links are very important to add in all HTML pages. But sometimes we wanna to make some links unique from other links. Like this: This is a Link This is also a Link This one is also a Link And this one is also a link That’s […]

CSS Icons

CSS Icons CSS Icons are icons that are created using CSS rather than traditional image files. They can be created using a combination of CSS properties such as borders, gradients, and shadows. Because they are created using code rather than images, they can be easily customized and scaled without losing quality. How Do CSS Icons […]

CSS How to Import Google Fonts

CSS How to Import Google Fonts What are Google Fonts? Google Fonts is a library of over 1000+ free, open-source fonts. You can use these fonts on your website to make your website’s text look great. How to Import Google Fonts – CSS Here, we have specified the font family to be “Sofia”, which is […]

CSS Make Text Unselectable

CSS Make Text UnSelectable If you are a developer or blogger, sometimes you have some type of text on your web page that you wish nobody can copy it. Because it’s very easy for anyone to copy any text from one place to another. In that situation you can use the CSS Property to make […]

CSS Margin

CSS Margin The CSS margin property is used to create space around an HTML element, outside the defined borders. With CSS, we have full control over the margins. We can setup the margin for each side of an element (top, right, bottom and left) by using the properties: These margin properties can have the following […]

CSS Background Image

CSS Background Image The background-image property defines an image that we wanna use as the background of an element. Here is how you can add the background image for any element. Now let’s put the same code in the below example to see the results. Example Similarly, we can also set the background image for […]

Introduction to CSS – crus4

Introduction to CSS What is CSS CSS stands for Cascading Style Sheets. With the help of CSS we can apply styles to any web page we want. It also describes the fonts, spacing, text color and background color of a web page. CSS also saves our lot of time and effort, as it controls the […]