Horje
css percentrage minus px Code Example
css percentrage minus px
You can use calc:

height: calc(100% - 18px);
Note that some old browsers don't support the CSS3 calc() function, so implementing the vendor-specific versions of the function may be required:

/* Firefox */
height: -moz-calc(100% - 18px);
/* WebKit */
height: -webkit-calc(100% - 18px);
/* Opera */
height: -o-calc(100% - 18px);
/* Standard */
height: calc(100% - 18px);




Css

Related
materialize css for react Code Example materialize css for react Code Example
Sf pro font html Code Example Sf pro font html Code Example
git font Code Example git font Code Example
fading bottom image css Code Example fading bottom image css Code Example
bootstrap Image thumbnails Code Example bootstrap Image thumbnails Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8