Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

<ul class="rating">
<li><a href="#" title="1 Star">1</a></li>

<li><a href="#" title="2 Stars">2</a></li>

<li><a href="#" title="3 Stars">3</a></li>

<li><a href="#" title="4 Stars">4</a></li>

<li><a href="#" title="5 Stars">5</a></li>
</ul>

From what I can tell, this is just a list. How would I integrate it into my form, so that the information from the star rating can be submitted to a database. My current code for the form is below:

    <p>Quality</p>
   <input type="radio" name="ratingquality" value="1"> 
   <input type="radio" name="ratingquality" value="2"> 
   <input type="radio" name="ratingquality" value="3"> 
   <input type="radio" name="ratingquality" value="4"> 
   <input type="radio" name="ratingquality" value="5"> 
share|improve this question
6  
Step 1: Throw it away. A bunch of links to the top of the page is no basis for a form control. Step 2: You want to pick exactly one option from a group of five so find something that builds on radio buttons such as this example I found via Google. – Quentin Nov 14 '11 at 7:01
@Quentin make this an answer so I can give you a proper up-vote – Jon P Nov 15 '11 at 5:35

2 Answers

I'm going to say right off the bat that you will not be able to achieve the look they have with radio buttons with strictly CSS.

You could, however, stick to the list style in the example you posted and replace the anchors with clickable spans that would trigger a javascript event that would in turn save that rating to your database via ajax.

If you went that route you would probably also want to save a cookie to the users machine so that they could not submit over and over again to your database. That would prevent them from submitting more than once at least until they deleted their cookies.

But of course there are many ways to address this problem. This is just one of them. Hope that helps.

share|improve this answer

Here is the solution.

The HTML:

<div class="rating">
<span>☆</span><span>☆</span><span>☆</span><span>☆</span><span>☆</span>
</div>

The CSS:

.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating > span {
  display: inline-block;
  position: relative;
  width: 1.1em;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
   content: "\2605";
   position: absolute;
}

Hope this helps.

Source

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.