List icon CSS Hướng dẫn FULL

List icon CSS Hướng dẫn FULL

Kinh Nghiệm Hướng dẫn List icon CSS Chi Tiết


Quý khách đang tìm kiếm từ khóa List icon CSS được Cập Nhật vào lúc : 2022-02-14 11:49:04 . Với phương châm chia sẻ Bí kíp về trong nội dung bài viết một cách Chi Tiết Mới Nhất. Nếu sau khi tìm hiểu thêm Post vẫn ko hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Ad lý giải và hướng dẫn lại nha.


list-style-image


The list-style-image CSS property sets an image to be used as the list item marker.


Nội dung chính


  • list-style-image

  • Formal definition

  • Formal syntax

  • Using a url value

  • Using a gradient

  • Specifications

  • Browser compatibility


  • It is often more convenient to use the shorthand list-style.


    Note: This property is applied to list items, i.e. elements with display: list-item; by default this includes <li> elements. Because this property is inherited, it can be set on the parent element (normally <ol> or <ul>) to let it apply to all list items.


    Syntax


    /* Keyword values */

    list-style-image: none;


    /* <url> values */

    list-style-image: url(‘starsolid.gif’);


    /* valid image values */

    list-style-image: linear-gradient(to left bottom, red, blue);


    /* Global values */

    list-style-image: inherit;

    list-style-image: initial;

    list-style-image: revert;

    list-style-image: unset;


    Values


    <image>


    A valid image to use as the marker.


    none


    Specifies that no image is used as the marker. If this value is set, the marker defined in list-style-type will be used instead.


    Formal definition


    Initial valuenoneApplies tolist itemsInheritedyesComputed valueAnimation typediscrete


    Formal syntax


    <image> | none


    where
    <image> = <url> | <image()> | <image-set()> | <element()> | <paint()> | <cross-fade()> | <gradient>


    where
    <image()> = image( <image-tags>? [ <image-src>? , <color>? ]! )
    <image-set()> = image-set( <image-set-option># )
    <element()> = element( <id-selector> )
    <paint()> = paint( <ident>, <declaration-value>? )
    <cross-fade()> = cross-fade( <cf-mixing-image> , <cf-final-image>? )
    <gradient> = <linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()>


    where
    <image-tags> = ltr | rtl
    <image-src> = <url> | <string>
    <color> = <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>
    <image-set-option> = [ <image> | <string> ] [ <resolution> || type(<string>) ]
    <id-selector> = <hash-token>
    <cf-mixing-image> = <percentage>? && <image>
    <cf-final-image> = <image> | <color>
    <linear-gradient()> = linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )
    <repeating-linear-gradient()> = repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )
    <radial-gradient()> = radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )
    <repeating-radial-gradient()> = repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )
    <conic-gradient()> = conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )


    where
    <rgb()> = rgb( <percentage>3 [ / <alpha-value> ]? ) | rgb( <number>3 [ / <alpha-value> ]? ) | rgb( <percentage>#3 , <alpha-value>? ) | rgb( <number>#3 , <alpha-value>? )
    <rgba()> = rgba( <percentage>3 [ / <alpha-value> ]? ) | rgba( <number>3 [ / <alpha-value> ]? ) | rgba( <percentage>#3 , <alpha-value>? ) | rgba( <number>#3 , <alpha-value>? )
    <hsl()> = hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )
    <hsla()> = hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )
    <hwb()> = hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )
    <side-or-corner> = [ left | right ] || [ top | bottom ]
    <color-stop-list> = [ <linear-color-stop> [, <linear-color-hint>]? ]# , <linear-color-stop>
    <ending-shape> = circle | ellipse
    <size> = closest-side | farthest-side | closest-corner | farthest-corner | <length> | <length-percentage>2
    <position> = [ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]
    <angular-color-stop-list> = [ <angular-color-stop> [, <angular-color-hint>]? ]# , <angular-color-stop>


    where
    <alpha-value> = <number> | <percentage>
    <hue> = <number> | <angle>
    <linear-color-stop> = <color> <color-stop-length>?
    <linear-color-hint> = <length-percentage>
    <length-percentage> = <length> | <percentage>
    <angular-color-stop> = <color> && <color-stop-angle>?
    <angular-color-hint> = <angle-percentage>


    where
    <color-stop-length> = <length-percentage>1,2
    <color-stop-angle> = <angle-percentage>1,2
    <angle-percentage> = <angle> | <percentage>


    Examples


    Using a url value


    HTML<ul>

    <li>Item 1</li>

    <li>Item 2</li>

    </ul>

    CSSul

    list-style-image: url(“starsolid.gif”);


    Result


    Using a gradient


    HTML<ul>

    <li>Item 1</li>

    <li>Item 2</li>

    </ul>

    CSSul

    font-size: 200%;

    list-style-image: linear-gradient(to left bottom, red, blue);


    Result


    Specifications


    SpecificationCSS Lists and Counters Module Level 3 (CSS Lists 3)
    # image-markers


    Browser compatibility


    BCD tables only load in the browser


    See also


    • list-style, list-style-type, list-style-position

    • url() function

    Reply

    6

    0

    Chia sẻ


    Chia Sẻ Link Download List icon CSS miễn phí


    Bạn vừa Read Post Với Một số hướng dẫn một cách rõ ràng hơn về Review List icon CSS tiên tiến và phát triển nhất Share Link Cập nhật List icon CSS miễn phí.



    Hỏi đáp vướng mắc về List icon CSS


    Nếu sau khi đọc nội dung bài viết List icon CSS vẫn chưa hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Admin lý giải và hướng dẫn lại nha

    #List #icon #CSS

Related posts:

    Post a Comment

    Previous Post Next Post

    Discuss

    ×Close