Integrating CSS star rating into an HTML form

后端 未结 6 845
梦如初夏
梦如初夏 2020-12-02 15:09

I\'ve seen a tutorial online - http://www.htmldrive.net/items/show/402/CSS-Star-Rating-System - for making a CSS star rating system.

On the page they have this code

6条回答
  •  -上瘾入骨i
    2020-12-02 15:48

    CSS:

    .rate-container > i {
        float: right;
    }
    
    .rate-container > i:HOVER,
    .rate-container > i:HOVER ~ i {
        color: gold;
    }
    

    HTML:

提交回复
热议问题