The following warnings occurred:
Warning [2] Undefined variable $settings - Line: 32 - File: inc/plugins/avatarep.php PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/avatarep.php 32 errorHandler->error_callback
/inc/class_plugins.php 38 require_once
/inc/init.php 235 pluginSystem->load
/global.php 20 require_once
/showthread.php 28 require_once
Warning [2] Trying to access array offset on value of type null - Line: 32 - File: inc/plugins/avatarep.php PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/avatarep.php 32 errorHandler->error_callback
/inc/class_plugins.php 38 require_once
/inc/init.php 235 pluginSystem->load
/global.php 20 require_once
/showthread.php 28 require_once
Warning [2] Undefined array key "action" - Line: 1545 - File: inc/plugins/avatarep.php PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/avatarep.php 1545 errorHandler->error_callback
/inc/class_plugins.php 142 avatarep_popup
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined variable $captcha - Line: 15 - File: global.php(587) : eval()'d code PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/global.php(587) : eval()'d code 15 errorHandler->error_callback
/global.php 587 eval
/showthread.php 28 require_once
Warning [2] Undefined variable $redirect_url - Line: 21 - File: global.php(587) : eval()'d code PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/global.php(587) : eval()'d code 21 errorHandler->error_callback
/global.php 587 eval
/showthread.php 28 require_once
Warning [2] Undefined array key "usergroup" - Line: 637 - File: inc/plugins/avatarep.php PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/avatarep.php 637 errorHandler->error_callback
/inc/plugins/avatarep.php 1079 avatarep_format_avatar
/inc/class_plugins.php 142 avatarep_threads
/showthread.php 1619 pluginSystem->run_hooks
Warning [2] Undefined array key "displaygroup" - Line: 638 - File: inc/plugins/avatarep.php PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/avatarep.php 638 errorHandler->error_callback
/inc/plugins/avatarep.php 1079 avatarep_format_avatar
/inc/class_plugins.php 142 avatarep_threads
/showthread.php 1619 pluginSystem->run_hooks
Warning [2] Undefined property: MyLanguage::$avatarep_user_alt_thread_contributor - Line: 1108 - File: inc/plugins/avatarep.php PHP 8.0.30 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/avatarep.php 1108 errorHandler->error_callback
/inc/class_plugins.php 142 avatarep_threads
/showthread.php 1619 pluginSystem->run_hooks



Hasan   06-28-2018, 09:31 AM
#1
This tutorial will teach you how to manipulate text using CSS properties. You can set following text properties of an element:

The color property is used to set the color of a text.

The direction property is used to set the text direction.

The letter-spacing property is used to add or subtract space between the letters that make up a word.

The word-spacing property is used to add or subtract space between the words of a sentence.

The text-indent property is used to indent the text of a paragraph.

The text-align property is used to align the text of a document.

The text-decoration property is used to underline, overline, and strikethrough text.

The text-transform property is used to capitalize text or convert text to uppercase or lowercase letters.

The white-space property is used to control the flow and formatting of text.

The text-shadow property is used to set the text shadow around a text.

Set the text color:
Following is the example which demonstrates how to set the text color. Possible value could be any color name in any valid format.

<p style="color:red;">
This text will be written in red.
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:31 AM
#2
Set the text direction :
Following is the example which demonstrates how to set the direction of a text. Possible values are ltr or rtl.

<p style="direction:rtl;">
This text will be renedered from right to left
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:31 AM
#3
Set the space between characters:
Following is the example which demonstrates how to set the space between characters. Possible values are normal or a number specifying space..

<p style="letter-spacing:5px;">
This text is having space between letters.
</p>
This will produce following result:

This text is having space between letters.

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:32 AM
#4
Set the space between words:
Following is the example which demonstrates how to set the space between words. Possible values are normal or a number specifying space..

<p style="word-spacing:5px;">
This text is having space between words.
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:32 AM
#5
Set the text indent:
Following is the example which demonstrates how to indent the first line of a paragraph. Possible values are % or a number specifying indent space..

<p style="text-indent:1cm;">
This text will have first line indented by 1cm
and this line will remain at its actual position
this is done by CSS text-indent property.
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:33 AM
#6
Set the text alignment:
Following is the example which demonstrates how to align a text. Possible values are left, right, center, justify..

<p style="text-align:right;">
This will be right aligned.
</p>
<p style="text-align:center;">
This will be center aligned.
</p>
<p style="text-align:left;">
This will be left aligned.
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:33 AM
#7
Decorating the text:
Following is the example which demonstrates how to decorate a text. Possible values are none, underline, overline, line-through, blink..

<p style="text-decoration:underline;">
This will be underlined
</p>
<p style="text-decoration:line-through;">
This will be striked through.
</p>
<p style="text-decoration:overline;">
This will have a over line.
</p>
<p style="text-decoration:blink;">
This text will have blinking effect
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:33 AM
#8
Set the text cases:
Following is the example which demonstrates how to set the cases for a text. Possible values are none, capitalize, uppercase, lowercase..

<p style="text-transform:capitalize;">
This will be capitalized
</p>
<p style="text-transform:uppercase;">
This will be in uppercase
</p>
<p style="text-transform:lowercase;">
This will be in lowercase
</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:33 AM
#9
Set the white space between text:
Following is the example which demonstrates how white space inside an element is handled. Possible values are normal, pre, nowrap.

<p style="white-space:pre;">This text has a line break
and the white-space pre setting tells the browser to honor it
just like the HTML pre tag.</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
Hasan   06-28-2018, 09:34 AM
#10
Set the text shadow:
Following is the example which demonstrates how to set the shadow around a text. This may not be supported by all the browsers.

<p style="text-shadow:4px 4px 8px blue;">
If your browser supports the CSS text-shadow property,
this text will have a blue shadow.</p>

Hello World!:

- tes
- Hello Friends . Welcome Back

Hasan
  
Users browsing this thread: 1 Guest(s)
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.