Skip to content

Instantly share code, notes, and snippets.

View lesaff's full-sized avatar
🎯
Focusing

Rudy Affandi lesaff

🎯
Focusing
View GitHub Profile
@lesaff
lesaff / responsive-iframe.md
Created September 9, 2015 02:12
Responsive iframe

Responsive iframe css

Use the following code in your css to create responsive iframe

.iframe-container {position: relative; padding-bottom: 56.25%; padding-top: 35px; height: 0; overflow: hidden;}
.iframe-container iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
@lesaff
lesaff / uikit-highcharts.md
Created September 9, 2015 02:10
Using Highcharts with UIKit Tabs

How to fix Highcharts div width behind hidden UIKit tab?

Add the following to your css

/* Fix chart width behind hidden tab */
.uk-switcher > li {display: block !important; height: 0; overflow-y: hidden;}
.uk-switcher > li.uk-active {height: auto;}