show/hide this revision's text 3 edited tags
show/hide this revision's text 2 edited tags
show/hide this revision's text 1

inline-block on span

I expected the two span tags in the following sample to display next to each other, instead they display one below the other. If I set the width of the class span.right to 49% they display next to each other. I am not able to figure out why the right span is pushed down like the right span has some invisible padding/margin which makes it take more than 50%. I am trying to get this done without using html tables. Any ideas? TIA




    Test Page
    
    	* {
    		margin: 0;
    	}

    	html,body{
    		margin:0;
    		padding:0;
    		height:100%;
    		width:100%;
    		border:none;
    	}

    	div.header{
    	    width:100%;
    	    height:80px;
    	    vertical-align:top;
    	}

    	span.left {
    		height:80px;
    		width:50%;
    		display:inline-block;
    		background-color:pink;
    	}

    	span.right {
    		vertical-align:top; 
    		display:inline-block;
    	    text-align:right;
    	    height:80px;
    	    width:50%;
    	    background-color:red;
    	}
    


    
    	Left Span 50% width
    	Right Span 50% width