CSS float content changes parent position -


why button float:left or float:right content changes button vertical position? example http://jsfiddle.net/8ff6dhou/

<button>aaa</button> <button><div style="float:left">bbb</div></button> <button><div style="float:right">ccc</div></button> <button>ddd</button> 

why 4 buttons not @ same vertical position? how fix this?

add vertical-align button.

button{vertical-align:top;}  

Comments

Popular posts from this blog

php - Extract Text from HTTP referer -

Receive udp packets in android gstreamer -

authentication - ASP.NET Core 1.0. Bearer Token, cannot access custom claims -