You can add text-align: center to the element with id googleForm . You can also safely remove margin-left and margin-right :
#googleForm { text-align: center; }
<div id="googleForm"> <iframe src="https://docs.google.com/forms....></iframe> </div>
If you want to use margin: 0 auto , you must set the width of the element:
#googleForm { width: 304px; margin: 0 auto; }
<div id="googleForm"> <iframe src="https://docs.google.com/forms....></iframe> </div>
source share