ການສອນສະໝໍາບັນຊີ ບໍລິການກາບຫຍັງ
- Previous Page ການສອນສະໝໍາບັນຊີ ບໍລິການກາບທັງສີບສອງຝາ
- Next Page ການສອນສະໝໍາບັນຊີ ບໍລິການວົງວອຍທີ່ປອດໄພ
CSS Border - ປະກອບພິມສະເພາະ
As you saw in the previous chapter, many properties need to be considered when handling borders.
To reduce code, you can also specify all individual border properties in one attribute.
border
The property is a shorthand for the following individual border properties:
border-width
border-style
(Required)border-color
Example
p { border: 5px solid red; }
Result:
Some Text
You can also specify all single border properties for just one side:
Left Border
p { border-left: 6px solid red; background-color: lightgrey; }
Result:
Some Text
Lower Border
p { border-bottom: 6px solid red; background-color: lightgrey; }
Result:
Some Text
- Previous Page ການສອນສະໝໍາບັນຊີ ບໍລິການກາບທັງສີບສອງຝາ
- Next Page ການສອນສະໝໍາບັນຊີ ບໍລິການວົງວອຍທີ່ປອດໄພ