Answers for "why does my css border not show up?"

CSS
1

border not showing css

// you probably forgot to add the border-style parameter.
/ Try the following

.container {
  border: black solid;
}
Posted by: Guest on July-16-2021

Code answers related to "why does my css border not show up?"

Browse Popular Code Answers by Language