Home › Forums › CSS › Creating a border using CSS › Reply To: Creating a border using CSS
February 8, 2017 at 11:27 am
#251270
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…