Css Course


The texts cover a large portion of Web pages. Styling the text may improve the appearance of web pages and can draw attention to certain elements of the text.

letter-spacing

The letter-spacing property controls the spacing of each character in a word.

- Values: - Syntax:
selector { letter-spacing: value; }
Example:
<style>
#idp { letter-spacing: 4px; }
</style>

<h4>Example letter-spacing</h4>
<p id='idp'>Web site: CoursesWeb.net</p>

word-spacing

The word-spacing property increase or decrease the space between words.
- Values: - Syntax:
selector { word-spacing: value; }
Example:
<style>
#idp { word-spacing: 0.5em; }
</style>

<h4>Example word-spacing</h4>
<p id='idp'>Free courses and tutorials.</p>

line-height

The line-height property sets the distance between lines.
- Values: - Syntax:
selector { line-height: value; }
Example:
<style>
#idp { line-height: 185%; }
</style>

<h4>Example line-height</h4>
<p id='idp'>First line text<br>
A second line ...<br>
Another line in the paragraph.</p>

text-transform

The text-transform controls the capitalization of text.
- Values: - Syntax:
selector { text-transform: value; }
Example:
<style>
#idp { text-transform: capitalize; }
</style>

<h4>Example text-transform</h4>
<p id='idp'>free CSS course and lessons.</p>

text-align

The text-align defines the horizontal alignment of text inside a containing block.
- Values: - Syntax:
selector { text-align: value; }
Example:
<style>
#idp1 { text-align: right; }
#idp2 { text-align: center; }
</style>

<h4>Example text-align</h4>
<p id='idp1'>Text with right align.</p>
<p id='idp2'>Paragraph with center align.</p>

vertical-align

The vertical-align sets the alignment of text (or other inline content) in relation to the line box controlled via line-height.
Because this property controls the positioning of an inline element in relation to a line box and not a block element, it is not suitable for aligning block elements in a layout grid.
- Values: - Syntax:
selector { vertical-align: value; }
Example:
<style>
.sp1 { vertical-align: sub; }
.sp2 { vertical-align: super; }
</style>

<h4>Example vertical-align</h4>
<p>Some text: <span class='sp1'>sub span</span> and a <span class='sp2'>super span</span> sub-string.</p>

text-indent

The text-indent defines an indentation for the first line of text in a block.
- Values: - Syntax:
selector { text-indent: value; }
Example:
<style>
p { text-indent: 20px; }
</style>

<h4>Example text-indent</h4>
<p>The first line of the paragraph, with indentation,<br>
The second line ...</p>

text-decoration

Via the text-decoration property you can set underlines, strikethrough, or other text decorations (even blink).
- Values: - Syntax:
selector { text-decoration: value; }
Example:
<style>
.sp1 { text-decoration: underline; }
.sp2 { text-decoration: overline; }
.sp3 { text-decoration: line-through; }
</style>

<h4>Example text-decoration</h4>
<p>Some text: <span class='sp1'>underline span</span>, a <span class='sp2'>overline text</span> and a <span class='sp3'>line-through</span> sub-string.</p>

white-space

The white-space sets how white space inside an element is handled.
- Values: - Syntax:
selector { white-space: value; }
Example:
<style>
p { white-space: pre; }
</style>

<h4>Example white-space</h4>
<p>The first line of the paragraph with more spaces between words.
The second line, without BR tag.</p>

word-wrap

With word-wrap you can allow browsers to break lines in the middle of words to prevent long strings of characters from overflowing a box.
- Values: - Syntax:
selector { word-wrap: value; }
Example:
<style>
p {
 width: 88px;
 word-wrap: break-word;
}
</style>

<h4>Example word-wrap</h4>
<p>Short paragraph with looooooooonnnnnnggggg wwwoooooorrrrrddddddsssss.</p>

text-shadow

The text-shadow property introduced in CSS3 allows for one or more shadow effects to be applied to the text of an element. This shadow is drawn around the letters themselves (not supported in Internet Explorer).
- Values: - Syntax:
selector { text-shadow: h-shadow v-shadow blur color; }
Example:
<style>
h3 { text-shadow: 3px 5px 2px green; }
</style>

<h4>Example text-shadow</h4>
<h3>Web site: marplo.net</h3>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to add definition lists into a <dl> element?
<dt> <dd> <li>
<dl>
 <dt>HTML</dt>
  <dd> - Hyper Text Markup Language</dd>
  <dd> - Language for web pages</dd>
</dl>
Which CSS property can hide an element on page, letting an empty space in its place?
display position visibility
#id {
  visibility: hidden;
}
Click on the event which is triggered when the mouse clicks on an object.
onclick onmouseover onfocus
document.getElementById("id").onclick = function(){
  alert("http://CoursesWeb.net/");
}
Indicate the PHP variable that contains the contents of both $_GET, $_POST, and $_COOKIE arrays.
$_SESSION $_GET $_REQUEST
if(isset($_REQUEST["id"])) {
  echo $_REQUEST["id"];
}
Configuring Text

Last accessed pages

  1. jsSHA - SHA Hashes and HMAC in JavaScript (3427)
  2. Download AJAX resources (219)
  3. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (137562)
  4. Recursive function to create Multi-Level Menu in PHP (11769)
  5. Force Download files with PHP (5056)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (251)
  2. Read Excel file data in PHP - PhpExcelReader (91)
  3. PHP Unzipper - Extract Zip, Rar Archives (76)
  4. The Four Agreements (75)
  5. The Mastery of Love (66)