CSS text decoration

Created By: chatGPT

In CSS, the text-decoration property is used to specify the decoration of text. This includes underlining, overlining, line-throughs, or none of them. The property can accept a variety of values for different effects.
p {
    text-decoration: underline;
}
You can also combine multiple text decorations together. For example, if you want both an underline and a line-through, you can specify this with the text-decoration property.
p {
    text-decoration: line-through underline;
}
Additionally, you can specify the color and style of the text decoration using the text-decoration-color and text-decoration-style properties. This allows for more visual customization.
p {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-style: dashed;
}
To remove any text decoration, you simply set the property to none.
p {
    text-decoration: none;
}
Introduction And SetupSelectorsType SelectorClass SelectorId SelectorAttribute SelectorsUniversal SelectorGrouping SelectorsCombinatorsDescendant CombinatorChild CombinatorAdjacent Sibling CombinatorGeneral Sibling CombinatorPseudo ClassesHoverNth ChildNth Of TypeFocusVisitedActiveFirst ChildLast ChildOnly ChildPseudo ElementsBeforeAfterFirst LetterFirst LineBox ModelMarginPaddingBorderWidthHeightBox SizingPositioningStaticRelativeAbsoluteFixedStickyZ IndexDisplayInlineBlockInline BlockFlexGridNoneFloatClearTypographyFont FamilyFont SizeFont WeightFont StyleLine HeightLetter SpacingText AlignText DecorationText TransformVertical AlignOverflowOverflow XOverflow YVisibilityClip PathBackgroundsBackground ColorBackground ImageBackground SizeBackground PositionBackground RepeatBackground AttachmentGradientsBordersBorder WidthBorder ColorBorder StyleBorder RadiusShadowsBox ShadowText ShadowFlexboxFlex DirectionJustify ContentAlign ItemsAlign SelfFlex GrowFlex ShrinkFlex BasisOrderGridGrid Template ColumnsGrid Template RowsGrid GapGrid Auto FlowAlign ContentCss VariablesCustom PropertiesAnimationKeyframesTransitionTransformRotateScaleTranslateSkewMedia QueriesMin WidthMax WidthOrientationAspect RatioUnitsPxEmRemVhVwPercentages