A dot is missing
HTML Code:
.imgtfe {
border: solid 1px #000000;
}
or, to limit it to images with that class, in case there are other elements with the class imgtfe, too
HTML Code:
img.imgtfe {
border: solid 1px #000000;
}
I usually add the selector (img, div, span, p) etc. too, to make things clearer:
div.classname instead of .classname
dot means class
hash means ID
.classname or img.classname
#idname or img#idname