CSS Introduction

CSS Tutorial What is CSS CSS Syntax CSS Selector How to include CSS CSS Comments

CSS Attributes

CSS Background CSS Border CSS Display CSS Float CSS Font CSS Color CSS Hover CSS Important CSS Line-height CSS Margin CSS Opacity CSS Filter CSS Images CSS Overflow CSS Padding CSS Position CSS Vertical align CSS White space CSS Width Word-wrap in CSS Box-shadow in CSS Text-transform in CSS CSS Outline CSS Visibility CSS Counters CSS Clear fix CSS Icons CSS Justify-content Text-decoration in CSS CSS Lists CSS nth selector CSS Sticky CSS Background-clip CSS Checkbox-style CSS Letter-spacing CSS Navigation bar CSS Overlay CSS Root CSS Specificity CSS Text-indent CSS Text-stroke CSS Zoom CSS Order CSS Descendent selector CSS Clip CSS calc() CSS Background-blend-mode CSS radio-button CSS Superscript and subscript CSS Text-effects CSS Text-align CSS Variables CSS Page-break-before CSS Page-break-inside CSS Page-break-after CSS Content property CSS Word-spacing CSS Animation CSS @keyframes rules CSS Pseudo-classes CSS Pseudo-elements CSS Radial-gradient CSS Translate CSS Gradients CSS z-index CSS Loaders CSS Units CSS Transition CSS Masking CSS Arrow CSS Pagination

Misc

What is Bootstrap CSS What is CSS used for Difference between HTML and CSS How to center a table in CSS What is a CSS File How to center a button in CSS How to change background color in CSS How to change the font in CSS How to change font size in CSS How to resize an image in CSS How to get rid of bullet pioints in CSS Is CSS a programming language Grid Vs Flexbox in CSS How to edit CSS in WordPress How to use google fonts in CSS Create a 3D text effect using HTML and CSS How to create blinking text using CSS Hover condition for a:before and a:after in CSS Difference between CSS Grid and CSS Flexbox How to Set Space between the Flexbox

CSS Width

CSS Width

The width property in CSS sets the content width of area of the element. These properties do not provide margin and border features. It is used to set the area’s width within the margin, border, and padding of an element.

Width Values

ValueDescription
autoIt is applied for calculating the width, and it is the default value.
lengthThis value is referred to describe the width property cm, px, etc.
%It describes a containing block’s width in %.
initialThis value sets the CSS Width property to the default value.
inheritThe inherit value inherits this property from one of its parent components.

Example of Width Property: in px

<!DOCTYPE html>
<html>
<head>
<style>
img.normal
{
 width: auto;
}
img.big
{
 width: 150px;
}
p.ex
{
 width: 150;
height: 150px;
}
</style>
</head>
<body>
<img class= "normal" src= "Rose.jpg" width= "95" height= "84"><br>
<img class= "big" src= "Rose.jpg" width= "95" height= "84">
<p class= "ex"> The width and height of this paragraph is 150px. </p>
<p> It is a paragraph. </p>
</body>
</html>

Output:

CSS Width