Home › Forums › CSS › “#” sign before property › Re: “#” sign before property
May 29, 2012 at 12:27 pm
#103617
Member
The hashtag as it’s called means that it applies to an named element with an ‘id’
You can then target this div directly with your CSS.
#insertname {
height: 250px;
}
for instance.