-1
전환이 작동하지 않습니다. 누군가 도움을 줄 수 있습니까? 너비가 텍스트와 고정 너비가 아닌 100 % 너비가 작동하지 않는 한 길게하고 싶습니다. 어디서 실수입니까?! 나는 자동차에 그것을 폭을 설정하지만 ... http://jsfiddle.net/6Lso4jt1/전환이 100 % 너비로 작동하지 않습니다.
<a href="#" class="hotspot"><span class="hotspot-info">bsf ksv nvd</span></a>
.hotspot {
display: block;
width: 40px;
height: 40px;
background: #c23538;}
.hotspot:hover .hotspot-info {
width: auto;
white-space: nowrap;
display: block;
height: 40px;
padding: 0 10px;}
.hotspot-info {
position: absolute;
transition:width 100ms ease-in-out;
width: 0;
background-color: #c23538;
height: 40px;
color: white;
line-height: 40px;
overflow: hidden;}
분명히 너비 : 자동으로 전환 할 수 없습니다 (http://n12v.com/css-transition-to-from-auto/). 아마 jQuery가 당신의 대답이 될 것입니다. –