Jump to content

html select style


sopranolv

Recommended Posts

Hello I have one problem,don't work select

 

with this work's fine

<select name="age" >    
    <option value="18">18</option>
    <option value="19">19</option>
    </select>

I have problem with this,how make to to function this code

<div class='selectBox'>
    <span class='selected'></span>
    <span class='selectArrow'>▼</span>
    <div class="selectOptions" >
        <span class="selectOption" value="Option 1">Option 1</span>
        <span class="selectOption" value="Option 2">Option 2</span>
        <span class="selectOption" value="Option 3">Option 3</span>
    </div>
</div>

I hope that in the right section :)

Link to comment
https://forums.phpfreaks.com/topic/294440-html-select-style/
Share on other sites

  • 2 weeks later...
<div class='selectBox'>

    <span class='selected'></span>

    <span class='selectArrow'>▼</span>

    <div class="selectOptions" >

  <select name="Option" >   

        <span class="selectOption"><option value="Option 1">Option 1</option></span>

        <span class="selectOption"><option value="Option 2">Option 2</option></span>

<span class="selectOption"><option value="Option 3">Option 3</option></span>

       </select>

    </div>

</div>

Link to comment
https://forums.phpfreaks.com/topic/294440-html-select-style/#findComment-1506887
Share on other sites

  • 2 weeks later...

This is another version i proposed:

<!DOCTYPE html>
<html lang="en">
<head></head>
<body>

<select name="age" >    
    <option value="18">18</option>
    <option value="19">19</option>
    </select>
	
<div class='selectBox' style="padding:5px;">
 
    <span class='Arrow'>▼</span>
    
	<select name="Option" >   
        <span class="selectOption"><option value="Option 1">Option 1</option></span>
        <span class="selectOption"><option value="Option 2">Option 2</option></span>
		<span class="selectOption"><option value="Option 3">Option 3</option></span>
    </select>
  
</div>

</body>
</html>
Link to comment
https://forums.phpfreaks.com/topic/294440-html-select-style/#findComment-1507860
Share on other sites

  • 3 months later...

<form class="demo">
    <select>
        <option>CSS</option>
        <option>HTML </option>
        <option>HTML 5</option>
    </select>
    <select class="balck">
        <option>CSS</option>
        <option>HTML </option>
        <option>HTML 5</option>
    </select>
    <select class="option3">
        <option>CSS</option>
        <option>HTML </option>
        <option>HTML 5</option>
    </select>
</form>

Link to comment
https://forums.phpfreaks.com/topic/294440-html-select-style/#findComment-1514773
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.