Reputation: 23
I have an iframe with width 800px and height 200px. i want it to display a page only in horizontal. means that i has no vertical content.
<iframe src="recipelist/" width="800px" height="250px" scrolling="yes" class="iframe-class" frameborder="0"></iframe>
the content of the iframe is a dyamic generated page (blog posts) with 100% width, which means that it will continue on horizontally when new posts comes in. the height for each item is 200px and i display: inline-block every item so that it lines up horizontally.
to understand better, i want to only display the items in a vertical line only. do i need to code the iframe or the page inside the iframe?
how can i make the parent page show it horizontally? means without vertically scrolling? just show an iframe with max width?
Upvotes: 0
Views: 4258
Reputation: 1214
<iframe src="www.google.com" class="iframe-class" frameborder="1" scrolling="no"></iframe>
in style
.iframe-class {
overflow-x: hidden;
height: 600px;
width: 200px;
}
Upvotes: 1