Jump to content

c1n1k

Newbie
  • Posts

    4
  • Joined

  • Last visited

c1n1k's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. c1n1k

    ScrollPane

    адрес домашней странички плагина
  2. c1n1k

    ScrollPane

    проблема с этим плагином. При ресайзе окна скролл не прижимается к краю. Частично удалось прижать таким методом. $(function(){ $.extend($.fn.jScrollPane.defaults, { showArrows:true, scrollbarWidth:11 } ); var isResizing; // and the body scrollpane var setContainerWidth = function() { // IE triggers the onResize event internally when you do the stuff in this function // so make sure we don't enter an infinite loop and crash the browser if (!isResizing) { isResizing = true; $w = $('.c1-games'); $c = $('.gamelist'); $jscpn = $('div.c1-games>div.jScrollPaneContainer'); var p = (parseInt($c.css('paddingLeft')) || 0) + (parseInt($c.css('paddingRight')) || 0); $jscpn.css({'width': $w.width() + 'px'}); $c.css({'width': ($w.width() - p) + 'px', 'overflow':'auto'}); $c.jScrollPane(); isResizing = false; } } $(window).bind('resize', setContainerWidth); setContainerWidth(); // it seems like you need to call this twice to get consistantly correct results cross browser... setContainerWidth(); }) кто-нибудь уже сталкивался с подобной проблемой?
  3. всем спс. проблема решается добавлением строчки позиционирования position:relative;
  4. имеется такая конструкция: <p class="block"><span class="info">День рождения:</span>19.09.2007</p> и соответствующие стили: .block { margin :5px 0px; font :normal 1em sans-serif; } .info { display :block; float :left; font :bold 1em sans-serif; margin :0px 10px 0 0; width :210px; overflow:auto; } так вооот в ие6 текст который находится внутри класса info странным образом исчезает, но если убрать float, то он появляется. может мне кто-нибудь объяснить почему так происходит?
×
×
  • 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. See more about our Guidelines and Privacy Policy