Jscroller Up и Jscroller бесконечны - PullRequest
0 голосов
/ 11 марта 2010

пожалуйста, помогите мне найти решение по этой кодировке

<div id="side_forums_pane" class="side_pane" style="display:none; height:330px;width:260px">
   <div class="jscroller2_up jscroller2_speed-19 jscroller2_mousemove" style="height:105px;align:left;left:2px;right:2px;width:160px;overflow:hidden;">
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>                                                            
    </div>
    <div class="jscroller2_up_endless jscroller_speed-19">
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>
       <b style="text-decoration:underline">Coming Soon..</b><br/>
          Your Own Classifieds Section<hr size='1' color='silver'/>                                        
    </div>
</div>

1 Ответ

0 голосов
/ 12 марта 2010

Ну, как уже говорили другие, вопрос не так ясен, но я вижу плохую спецификацию CSS для DIV, которую вы классифицировали как "jscroller2_up jscroller2_speed-19 jscroller2_mousemove".

В этом DIV есть встроенный стиль, который включает "align: left;"

Это недействительно.

Полагаю, ваша проблема связана с макетом. Вы можете попытаться решить, исправив следующее:

<div id="side_forums_pane" class="side_pane" style="display:none; height:330px;width:260px"> 
   <div class="jscroller2_up jscroller2_speed-19 jscroller2_mousemove" style="height:105px; text-align:left; left:2px; right:2px; width:160px; overflow:hidden;"> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/>                                                             
    </div> 
    <div class="jscroller2_up_endless jscroller_speed-19"> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/> 
       <b style="text-decoration:underline">Coming Soon..</b><br/> 
          Your Own Classifieds Section<hr size='1' color='silver'/>                                         
    </div> 
</div> 

Обратите внимание, что это свойство "text-align", а не "align"

Надеюсь, это то, что вы искали

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...