Skip to main content

Definitions by Pathoschild

Slang used by American soldiers in the Vietnam War, sardonically meaning "sorry about that", "too damn bad", or "tough shit". Derived from Vietnamese, in which it means a polite "excuse me".
Aw, did I hurt your feelings? Xin loy!
xin loy by Pathoschild November 6, 2007

specificity

A CSS rule that states that in case of conflict, the properties of the most specific selector is applied.
For example: if we make all tables bold, but make all table cells have a normal weight, the latter rule will be applied. This is because "table cell" is more specific than "table".
specificity by Pathoschild March 21, 2005

formatting 

The defined appearance of text, especially used in webdesign and publishing.
"That text is way too small. You should change the formatting to make the page more readable."
formatting by Pathoschild March 21, 2005

clientside

Anything that occurs on the client in a client-server relationship. For example, CSS is clientside because it's used by the browser. PHP is serverside (the opposite of clientside) because it's used by the server.
XHTML and CSS are clientside languages.
clientside by Pathoschild March 21, 2005
A computer system or process requesting something from another system or process in a client-server relationship. The opposite of 'server'.
Browsers are clients because they request information from websites' servers.
client by Pathoschild March 21, 2005

selector 

In CSS, the XHTML tag that the formatting is applied to.
XHTML:
<selector>blah.</selector>

CSS:
selector {property: value}
selector by Pathoschild March 21, 2005
A sequence of characters used in XHTML and CSS to provide information to the browser, such as text formatting.
<b></b> are, respectively, the opening and closing bold tags. This tells the browser to make the enclosed text heavier than normal.
tag by Pathoschild March 21, 2005