Help with div - make div fit the remaining width

后端 未结 1 898
误落风尘
误落风尘 2020-12-19 23:28

I have the following html code:

相关标签:
1条回答
  • 2020-12-20 00:04

    <div class="a">
    	<div class="b">
    		<a href="#">click here to be amazed!</a>
    	</div>
    	<div class="c">
    		this is some awesome text
    	</div>	
    </div>
    
    <STYLE>
    	.b,.c {
    		padding:15px;
    	}
    
    	div.a {		
    		border: 1px solid red;
    	}
    
    	div.b {
    		float: left;
    		border: 1px solid blue;
    	}
    
    	div.c {
    		border: 1px solid green;
    	}
    </STYLE>

    0 讨论(0)
提交回复
热议问题