Why does additional border around container appear? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why does additional border around container appear?

<style> <div id="container"> <style> #container { width:100%;border: 4px solid brown;} #header_wrap { width: 95%;border: 4px solid red;} #header { width: 50%;border: 4px solid green;margin: auto;} #content_wrap { width: 95%;border: 4px solid red;} #content { width: 50%;border: 4px solid green;margin: auto;} </style> <div id="container"> <div id="header_wrap"> <div id="header">HEADER</div> </div> <br/> <div id="content_wrap"> <div id="content">CONTENT</div> </div> </div>

11th Aug 2017, 5:14 AM
Doniyor Djalilov
4 Answers
+ 1
first of all, you have 2 style starting block and only one closing tag. try removing first two lines
11th Aug 2017, 5:33 AM
Paul
+ 1
here is your code you had specified the border property around the div removed it and some more check this if that's what you need ? https://code.sololearn.com/WMC22Id7bvbS/?ref=app
11th Aug 2017, 6:02 AM
Lord Krishna
Lord Krishna - avatar
0
or maybe this is not a solution to your questiin. what border is the problem? red, green or black?
11th Aug 2017, 5:35 AM
Paul
0
you specify border in each one of them and that might be your case. if there is any border that you did not specify, try: * { border-width: 0; } Add it to Style block and see if something changes
11th Aug 2017, 5:39 AM
Paul