What to write in css3 to make a map "the entire width stretched" in iframe tag ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What to write in css3 to make a map "the entire width stretched" in iframe tag ?

Sorry for not knowing the term for the entire width stretched" tell me please if you have this concept 😄

19th Feb 2017, 3:19 PM
Natalia Popova
Natalia Popova - avatar
2 Answers
+ 2
The container is your <iframe> tag... If you have only one <iframe> in your page, you can target the element in your css rules: iframe { width:100%; } If you have many and don't want to apply this rule to all, you need to more accuratly target... The simpliest way to do it, is to provide an id to your iframe, and taget it: #myIFrameId { width:100%; } And if you want to take ALL the width ( including default margins ), you need to set to zero the <body> margins ( other ways are possible, but when it's enough, this is the cleanest/proper way to do ): body { margin:0; }
19th Feb 2017, 8:50 PM
visph
visph - avatar
0
You need to add the map into a container and then make give that container full width. ( width : 100%; ) See this : https://jsfiddle.net/vo8hv2cc/
19th Feb 2017, 3:30 PM
[No Name]
[No Name] - avatar