Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Creating a border using CSS Reply To: Creating a border using CSS

#251270
Codi
Participant

looking at your html you have no quotes on your class

you have

class=col-md-6 thin_border

should be

class=”col-md-6 thin_border”

you need to add quotes to everything

you have no quotes in style sheet links classes or ids

anything with = needs to be in quotes.. example

id=”something”
class=”something”
href=”link” etc…