Vaadin 6 Embedded Image 100% Height

Hi, i’ve got a vaadin application which is written in version 6. Now i wanna add a split image to Gridlayout column with code at behind. But i can’t reach image’s all parent divs style property to set 100% height. Can you please examine it.

<div style="overflow-x: hidden; overflow-y: hidden; padding-left: 0px; position: absolute; left: 487px; top: 0px; padding-top: 0px; width: 33px; height: 100%; ">
<div style="float: left; margin-left: 0px; ">
<div class="v-embedded v-embedded-image" style="width: 22px; ">
<img style="width: 22px; " src="/****/VAADIN/themes/Theme/img/split.png">
</div>
</div>
</div>
splitter = new Embedded( null, new ThemeResource( "img/split.png" ) );
        splitter.setImmediate( true );
        splitter.setWidth( 22, Sizeable.UNITS_PIXELS ); // 22 is image width
        splitter.setHeight(100,Sizeable.UNITS_PERCENTAGE);
        splitter.addListener( new ClickListener(){

            @Override
            public void click( com.vaadin.event.MouseEvents.ClickEvent event ){
                handleSplitterClickAction();
            }
        } );

        skeletonLayout.addComponent( splitter, 2, 0, 2, 13 );

Also i tried to add style name and set it’s height and img’s height 100% but it didn’t work because of this strange div (i can’t reach it):

<div style="float: left; margin-left: 0px; ">

Can you please help me about this.