2016-08-19 4 views
0

JSP (Spring MVC)에서 다중 선택 상자를 사용하고 있습니다. 다중 선택에서 세 가지 옵션이 있습니다. 크기에 CSS가 사용되지 않았습니다. 하지만 나는 multiselect 크기를 대형화하고있다. 난 그냥 여분의 공간이없는 정확한 크기가 필요합니다.다중 선택 상자의 크기 줄이기

코드는 아래를 참조하십시오 :

<select id="test" name="test" multiple="multiple"> 
    <option value="test1">test1</option> 
    <option value="test2">test2</option> 
    <option value="test3">test3</option> 
</select> 

출력이 필요하지 않습니다 TEST3에서 일부 공간을 포함하고 있습니다. 여분의 공간을 없애는 방법이 있습니까?

참고 : id에는 CSS가 사용되지 않습니다.

답변

0

CSS를 통해 select의 높이를 설정하지 않는 이유는 무엇입니까?

select { 
 
    height: 45px; 
 
}
<select id="test" name="test" multiple="multiple"> 
 
    <option value="test1">test1</option> 
 
    <option value="test2">test2</option> 
 
    <option value="test3">test3</option> 
 
</select>