css - i want to give padding in pixels and fix width in percentage -


outer div hold thumbnails contains padding: 20px 40px 0px 40px. want fix width in percentage responsive layout. if width not specified, there empty space on right side.can me, how calculate width in '%' if padding there in px.

try to box-sizing

div{ padding: 20px 40px 0px 40px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; } 

more box-sizing


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -