A computer system or process requesting something from another system or process in a client-server relationship. The opposite of 'server'.
by Pathoschild March 21, 2005
selector {text-weight: bold;}
If we give the property 'text-weight' with the value 'bold' to a selector, any occurance of text within that selector in the XHTML will be bold.
If we give the property 'text-weight' with the value 'bold' to a selector, any occurance of text within that selector in the XHTML will be bold.
by Pathoschild March 21, 2005
by Pathoschild March 21, 2005
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.
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.
by Pathoschild March 21, 2005
by Pathoschild March 21, 2005
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".
by Pathoschild March 21, 2005