adjust the width of an element using the width property - zilongxuan001/LearnFreecode GitHub Wiki

理解

你可以在CSS里使用width属性设置元素的宽度。

值(value)可以被设置为相对长度单位(比如em),或绝对长度(比如px),或者它父本元素的比例。

这里是一个例子可以设置图像元素的宽度为220px。

img {
    width: 220px;
}

来源

Applied Visual Design: Adjust the Width of an Element Using the width Property | Learn freeCodeCamp

CHAGELOG

2018-10-18 17:31:51