Jump to content

[CSS] Problem with long <option> in <select>


guybrush

Recommended Posts

Greetings everyone! I post here 'cause i think the solution is more "css" than "html"

 

I've a <select> with some <option>

Many <option> have long description.

Example:

 

<selece name=sel>
    <option value=10>long description here long description here long description here long description here </option>
    <option value=13>long description here long description here long description here long description here </option>
</select>

 

I NEED to show each description, but too  long to see in the <option> (too big for page).

Actually I cut the description with PHP at 80 chars.

 

Is there a way to show, e.g., as "ALT" for image ? Or any other tricks?

 

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/45539-css-problem-with-long-in/
Share on other sites

You could do something like this:

<style type="text/css">
select[name="sel"] {
width: 300px;
}
</style>

<select name="sel">
    <option value="10">long description here long description here long description here long description here </option>
    <option value="13">long description here long description here long description here long description here </option>
</select>

I think you didn't got the target :)

 

The problem is not the size

 

the problem is that I Have to let visible all the description. But if it's too long i need to cut it but, on option mouseover, let see the entire description (as a "title" or "alt")

 

Hope my english is enaugh understandable to explane :)

Ah, then you can just put the truncated part within the tag and the full part in the title attribute. E.g.

<option value="13" title="long description here long description here long description here long description here">long description here long descripti...</option>

I already tried it

 

It run with FF but not with IE6

 

<html><body>
<select name="se">
<option value="">----</option>
<option value="15" title="FULL TEXT">bla bla bla</option>
<option value="25" title="FULL TEXT">bla bla bla</option>
<option value="35" title="FULL TEXT">bla bla bla</option>
<option value="45" title="FULL TEXT">bla bla bla</option>
</select>
</body></html>

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.