문제

http://makememodern.com/portfolio/

You will see that I have embedded a website onto the page and that it is aligned to the right side of the page. I would like it to be centered.

<div style="text-align:center">
<iframe style="-webkit-transform: scale(0.7);" src="http://www.stokeswilliams.com" width="100%" height="700px"></iframe>
</div>
도움이 되었습니까?

해결책

You are setting the width of the iframe as 1100px. The div that's wrapping it has a dynamic width.

To solve it, you can set the width of the iframe to match the width of its parent container, by doing this:

iframe {
    width: 100%;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top