Sei sulla pagina 1di 24

Property Description Possible Examples

Values

background-attachment Declares the fixed div { background-


attachment of scroll attachment:fixed; }
a background div { background-
image (to attachment:scroll; }
scroll with the
page content
or be in a
fixed
position).

background-color Declares the Valid color div { background-


background names, RGB color:green; }
color. values, div { color:#00FF00; }
hexidecimal
notation.

background-image Declares the URL values. div { background-


background image:url(images/img.jpg); }
image of an body { background-
element. image:url(img.jpg); }

background-position Declares the Lengths or div { background-


position of a percentages position:10px 50px; }
background for the x and y div { background-
image. positions, or position:bottom right; }
one of the
predefined
values:
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right

background-repeat Declares how repeat div { background-


and/or if a repeat-x repeat:repeat-x; }
background repeat-y div { background-repeat:no-
image repeats. no-repeat repeat; }

background Used as a Separate div { background:green


shorthand values by a url(image.jpg) no-repeat
property to space in the fixed center center; }
set all the following div
background order (those { background:url(image.jpg)
properties at that are not fixed; }
once. defined will
use inherited
or default
initial values):
background-
color
background-
image
background-
repeat
background-
attachment
background-
position
Border Properties
CSS Border Properties

Property Description Possible Values Examples

border-top-color Declares the color Valid color names, RGB div { border-top-
of the top border. values, hexidecimal color:green; }
notation, or the predefined div { border-top-
value transparent. color:#00FF00; }

border-top-style Declares the style none div { border-top-


of the top border. hidden style:solid; }
dotted div { border-top-
dashed style:inset; }
solid
double
groove
ridge
inset
outset

border-top-width Declares the width Lengths or the following div { border-top-


of the top border. predefined values: width:2px; }
thin div { border-top-
medium width:thin; }
thick
border-top Used as a Separate values by a space div { border-
shorthand in the following order top:2px solid
property to set all (those that are not defined green; }
the border-top will use inherited or div { border-
properties at once. default initial values): top:thick double
border-top-width #00FF00; }
border-top-style
border-top-color

border-right-color Declares the color Valid color names, RGB div { border-right-
of the right values, hexidecimal color:green; }
border. notation, or the predefined div { border-right-
value transparent. color:#00FF00; }

border-right-style Declares the style none div { border-right-


of the right hidden style:solid; }
border. dotted div { border-right-
dashed style:inset; }
solid
double
groove
ridge
inset
outset

border-right-width Declares the width Lengths or the following div { border-right-


of the right predefined values: width:2px; }
border. thin div { border-right-
medium width:thin; }
thick

border-right Used as a Separate values by a space div { border-


shorthand in the following order right:2px solid
property to set all (those that are not defined green; }
the border-right will use inherited or div { border-
properties at once. default initial values): right:thick double
border-right-width #00FF00; }
border-right-style
border-right-color

border-bottom-color Declares the color Valid color names, RGB div { border-
of the bottom values, hexidecimal bottom-
border. notation, or the predefined color:green; }
value transparent. div { border-
bottom-
color:#00FF00; }
border-bottom-style Declares the style none div { border-
of the bottom hidden bottom-
border. dotted style:solid; }
dashed div { border-
solid bottom-
double style:inset; }
groove
ridge
inset
outset

border-bottom-width Declares the width Lengths or the following div { border-


of the bottom predefined values: bottom-
border. thin width:2px; }
medium div { border-
thick bottom-
width:thin; }

border-bottom Used as a Separate values by a space div { border-


shorthand in the following order bottom:2px solid
property to set all (those that are not defined green; }
the border-bottom will use inherited or div { border-
properties at once. default initial values): bottom:thick
border-bottom-width double #00FF00; }
border-bottom-style
border-bottom-color

border-left-color Declares the color Valid color names, RGB div { border-left-
of the left border. values, hexidecimal color:green; }
notation, or the predefined div { border-left-
value transparent. color:#00FF00; }

border-left-style Declares the style none div { border-left-


of the left border. hidden style:solid; }
dotted div { border-left-
dashed style:inset; }
solid
double
groove
ridge
inset
outset

border-left-width Declares the width Lengths or the following div { border-left-


of the left border. predefined values: width:2px; }
thin div { border-left-
medium width:thin; }
thick

border-left Used as a Separate values by a space div { border-


shorthand in the following order left:2px solid
property to set all (those that are not defined green; }
the border-left will use inherited or div { border-
properties at once. default initial values): left:thick double
border-left-width #00FF00; }
border-left-style
border-left-color

border-color Declares the Valid color names, RGB div { border-


border color of all values, hexidecimal color:green red
four borders at notation, or the predefined blue olive; }
once. value transparent. div { border-
Separate the color for each color:green; }
border by a space, div { border-
declaring the colors for the color:green red; }
borders in the following div { border-
order: color:green red
border-top-color blue; }
border-right-color
border-bottom-color
border-left-color
Undeclared values work as
further shorthand notation.
If only one color value is
declared, all four borders
will use that color. If two
colors are declared, the top
and bottom borders will
use the first color while the
right and left borders will
use the second color. If
three colors are declared,
the top border will use the
first color, the right and
left borders will use the
second color, and the
bottom border will use the
third color.

border-style Declares the none div { border-


border style of all hidden style:solid dotted
four borders at dotted dashed double; }
once. dashed div { border-
solid style:solid; }
double div { border-
groove style:solid dotted; }
ridge div { border-
inset style:solid dotted
outset dashed; }
Undeclared values work as
further shorthand notation.
If only one style value is
declared, all four borders
will use that style. If two
styles are declared, the top
and bottom borders will
use the first style while the
right and left borders will
use the second style. If
three styles are declared,
the top border will use the
first style, the right and left
borders will use the second
style, and the bottom
border will use the third
style.

border-width Declares the width Lengths or the following div { border-


of all four borders predefined values: width:1px 3px 5px
at once. thin 2px; }
medium div { border-
thick width:thin; }
Undeclared values work as div { border-
further shorthand notation. width:2px 4px; }
If only one width value is div { border-
declared, all four borders width:2px 4px 5px;
will use that width. If two }
widths are declared, the
top and bottom borders
will use the first width
while the right and left
borders will use the second
width. If three widths are
declared, the top border
will use the first width, the
right and left borders will
use the second width, and
the bottom border will use
the third width.
border Used as a Separate values by a space div { border:1px
shorthand to in the following order double green; }
declare the border (those that are not defined div { border:thin
properties when will use inherited or solid #00FF00; }
all four borders default initial values):
will have the same border-width
appearance. border-style
border-color
Classification and Positioning Properties
CSS Classification/Positioning Properties

Property Description Possible Values Examples

clear Declares the side(s) of an left div { clear:right; }


element where no right div { clear:both; }
previous floating both
elements are allowed to none
be adjacent.

cursor Declares the type of URL values, and the div { cursor:crosshair; }
cursor to be displayed. following prefefined div
values: { cusrsor:url(image.csr); }
auto div
crosshair { cusrsor:url(image.csr),
default pointer; }
pointer
move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help

display Declares if/how the none div { display:none; }


element displays. inline div { display:inline; }
block div { display:marker; }
list-item
run-in
compact
marker
table
inline-table
table-row-group
table-header-group
table-footer-group
table-row
table-column-group
table-column
table-cell
table-caption

float Declares whether a box left div { float:left; }


should float to the left or right div { float:right; }
right of other content, or none
whether it should not be
floated at all.

visibility Declares the visibility of visible div { visibility:visible; }


boxes generated by an hidden div { visibility:hidden; }
element. collapse

top Declares the distance Lengths, percentages, div { top:15px; }


that the top content edge and the predefined div { top:2%; }
of the element is offset value auto.
below the top edge of its
containing block. The
position property of the
element must also be set
to a value other than
static.

right Declares the distance Lengths, percentages, div { right:15px; }


that the right content and the predefined div { right:2%; }
edge of the element is value auto.
offset to the left of the
right edge of its
containing block. The
position property of the
element must also be set
to a value other than
static.

bottom Declares the distance Lengths, percentages, div { bottom:15px; }


that the bottom content and the predefined div { bottom:2%; }
edge of the element is value auto.
offset above the bottom
edge of its containing
block. The position
property of the element
must also be set to a
value other than static.

left Declares the distance Lengths, percentages, div { left:15px; }


that the left content edge and the predefined div { left:2%; }
of the element is offset value auto.
to the right of the left
edge of its containing
block. The position
property of the element
must also be set to a
value other than static.

position Declares the type of static div { position:absolute; }


positioning of an relative div { position:relative; }
element. absolute
fixed

clip Declares the shape of a Shapes, or the div { clip:auto; }


clipped region when the predefined value div { clip:rect(2px, 4px,
value of the overflow auto. 7px, 5px); }
property is set to a value In CSS 2, the only
other than visible. valid shape is a
rectangle, using the
following format to
specify the offset
lengths from each
side of the box:
rect(top, right,
bottom, left)

overflow Declares how content visible div { overflow:hidden; }


that overflows the hidden div { overflow:scroll; }
element's box is handled. scroll
auto

vertical-align Declares the vertical Lengths, percentages, span { vertical-


alignment of an inline- and the following align:middle; }
level element or a table predefined values: td { vertical-align:top; }
cell. baseline
sub
super
top
text-top
middle
bottom
text-bottom

z-index Declares the stack order Integer values and div { z-index:2; }
of the element. the predefined value div { z-index:auto; }
auto.
Dimension Properties
CSS Dimension Properties

Property Description Possible Values Examples

height Declares the height of the Lengths, percentages, and div


element. the predefined value auto. { height:200px; }
div { height:50%; }

max-height Declares the maximum Lengths, percentages, and div { max-


height of the element. the predefined value auto. height:200px; }
div { max-
height:50%; }

min-height Declares the minimum Lengths, percentages, and div { min-


height of the element. the predefined value auto. height:200px; }
div { min-
height:50%; }

width Declares the width of the Lengths, percentages, and div { width:500px; }
element. the predefined value auto. div { width:75%; }

max-width Declares the maximum Lengths, percentages, and div { max-


width of the element. the predefined value auto. width:500px; }
div { max-
width:75%; }

min-width Declares the minimum Lengths, percentages, and div { min-


width of the element. the predefined value auto. width:500px; }
div { min-
width:75%; }
Font Properties
CSS Font Properties

Property Description Possible Values Examples

font-family Declares the name of Valid font family names div { font-family:Arial;
the font to be used. or generic family names, }
Previously set in i.e. Arial, Verdana, sans- div { font-family:Arial,
HTML via the face serif, "Times New Helvetica, sans-serif; }
attribute in a <font> Roman", Times, serif, etc.
tag. Font family names can be
separated by a comma in
the same declaration to
allow additional and/or
generic family names to
be used if the prefereed
font is unable to be
displayed.

font-size Declares the size of Lengths (number and unit div { font-size:70%; }
the font. Previously type— i.e. 1em, 12pt, div { font-size:0.85em;
set in HTML via the 10px, 80%) or one of the }
size attribute in a following predefined div { font-
<font> tag. values: size:medium; }
xx-small
x-small
small
medium
large
x-large
xx-large
smaller
larger

font-size-adjust Limited browser Numeric value div { font-size-


support: Was part of adjust:0.54; }
CSS 2, but not in div { font-size-
CSS 2.1. This adjust:0.46; }
property may return
in CSS 3.
Declares the aspect
value (font size
divided by x-height).

font-stretch Limited browser normal div { font-


support: Was part of wider stretch:narrower; }
CSS 2, but not in narrower div { font-stretch:ultra-
CSS 2.1. This ultra-condensed expanded; }
property may return extra-condensed
in CSS 3. condensed
Declares the stretch semi-condensed
of the font face. semi-expanded
expanded
extra-expanded
ultra-expanded
font-style Declares the font normal div { font-style:italic; }
style. italic div { font-
oblique style:oblique; }

font-variant Declares the font normal div { font-


variant. small-caps variant:normal; }
div { font-
variant:small-caps; }

font-weight Declares the font normal div { font-


weight (lightness or bold weight:bolder; }
boldness) bolder div { font-
lighter weight:200; }
100
200
300
400
500
600
700
800
900

font Used as a shorthand Separate values by a space div { font:italic small-


property to declare all in the following order caps bold 1em 1.2em
of the font properties (those that are not defined Arial }
at once (except font- will use inherited or div { font:bold 0.8em
size-adjust and font- default initial values): Verdana }
stretch). font-style
font-variant
font-weight
font-size
line-height
font-family
Generated Content Properties
CSS Generated Content Properties

Property Description Possible Values Examples

content Generates content String values, URL div:before { content:"some


in the document in values, and text"; }
conjunction with predefined value div:after
the :before and formats: { content:url(page2.html); }
:after pseudo- counter(name)
elements. counter(name, list-
style-type)
counters(name,
string)
counters(name,
string, list-style-
type)
attr(X)
open-quote
close-quote
no-open-quote
no-close-quote

counter-increment Declares the Integers and the More Information


counter increment predefined value
for each instance none.
of a selector.

counter-reset Declares the Integers and the More Information


value the counter predefined value
is set to on each none.
instance of a
selector.

quotes Declares the type String values and More Information


of quotation the predefined
marks to use for value none.
quotations and
embedded
quotations.
List Properties
CSS List Properties

Property Description Possible Values Examples

list-style-type Declares the type of disc ol { list-style-type:upper-


list marker used. circle roman; }
square ul { list-style-
decimal type:square; }
decimal-leading-zero
lower-roman
upper-roman
lower-alpha
upper-alpha
lower-greek
lower-latin
upper-latin
hebrew
armenian
georgian
cjk-ideographic
hiragana
katakana
hiragana-iroha
katakana-iroha

list-style-position Declares the inside ol { list-style-


position of the list outside position:inside; }
marker. ul { list-style-
position:outside; }

list-style-image Declares an image URL values. ul { list-style-


to be used as the list image:url(image.jpg); }
marker.

list-style Shorthand property Separate values by a ul { list-style:disc inside


to declare three list space in the following url(image.gif); }
properties at once. order (those that are ol { list-style:upper-roman
not defined will use outside; }
inherited or default
initial values):
list-style-type
list-style-position
list-style-image

marker-offset Declares the marker Lengths and the li:before { display:marker;


offset for elements predefined value auto. marker-offset:5px; }
with a value of
marker set for the
display property.
Margin Properties
CSS Margin Properties

Property Description Possible Values Examples

margin-top Declares the top Lengths, percentages, and the div { margin-
margin for the predefined value auto. top:5px; }
element. div { margin-
top:15%; }

margin-right Declares the right Lengths, percentages, and the div { margin-
margin for the predefined value auto. right:5px; }
element. div { margin-
right:15%; }
margin-bottom Declares the Lengths, percentages, and the div { margin-
bottom margin for predefined value auto. bottom:5px; }
the element. div { margin-
bottom:15%; }

margin-left Declares the left Lengths, percentages, and the div { margin-
margin for the predefined value auto. left:5px; }
element. div { margin-
left:15%; }

margin Shorthand Separate values by a space in the div { margin:5px


property used to following order (those that are not 12px 4px 7px; }
declare all the defined will use inherited or default div { margin:5px;
margin properties initial values): }
at once. margin-top div { margin:5px
margin-right 10px; }
margin-bottom div { margin:5px
margin-left 7px 4px; }
Undeclared values work as further
shorthand notation. If only one
length value is declared, all four
margins will use that length. If two
lengths are declared, the top and
bottom margins will use the first
length while the right and left
margins will use the second length.
If three lengths are declared, the top
margin will use the first length, the
right and left margins will use the
second length, and the bottom
margin will use the third length.
Outline Properties
CSS Outline Properties

Property Description Possible Values Examples

outline-color Declares the outline Valid color names, RGB div { outline-
color. values, hexidecimal color:green; }
notation. div { outline-
color:#00FF00; }

outline-style Declares the style of none div { outline-


the outline. dotted style:solid; }
dashed div { outline-
solid style:inset; }
double
groove
ridge
inset
outset

outline-width Declares the width of Lengths or the following div { outline-


the outline. predefined values: width:2px; }
thin div { outline-
medium width:thin; }
thick

outline Used as a shorthand Separate values by a space div { outline:green


property to set all the in the following order (those solid 2px; }
background properties that are not defined will use div { outline:#00FF00
at once. inherited or default initial double thick; }
values):
outline-color
outline-style
outline-width
Padding Properties
CSS Padding Properties

Property Description Possible Values Examples

padding-top Declares the top Lengths, percentages, and the div { padding-
padding for the predefined value auto. top:5px; }
element. div { padding-
top:15%; }

padding-right Declares the right Lengths, percentages, and the div { padding-
padding for the predefined value auto. right:5px; }
element. div { padding-
right:15%; }

padding-bottom Declares the Lengths, percentages, and the div { padding-


bottom padding predefined value auto. bottom:5px; }
for the element. div { padding-
bottom:15%; }

padding-left Declares the left Lengths, percentages, and the div { padding-
padding for the predefined value auto. left:5px; }
element. div { padding-
left:15%; }

padding Shorthand Separate values by a space in the div


property used to following order (those that are not { padding:5px
declare all the defined will use inherited or 12px 4px 7px; }
margin properties default initial values): div
at once. padding-top { padding:5px; }
padding-right div
padding-bottom { padding:5px
padding-left 10px; }
Undeclared values work as further div
shorthand notation. If only one { padding:5px
length value is declared, all four 7px 4px; }
sides will use that length. If two
lengths are declared, the top and
bottom sides will use the first
length while the right and left sides
will use the second length. If three
lengths are declared, the top side
will use the first length, the right
and left sides will use the second
length, and the bottom side will
use the third length.
Page Properties
CSS Page Properties

Property Description Possible Values Examples

marks Declares the type of marks to crop @page


display outside the page box. cross { marks:crop; }

orphans Declares the minimum Integers @page


number of lines of a { orphans:2; }
paragraph that must be left at
the bottom of a page.

page Declares the type of page Indentifiers More


where an element should be Information
displayed.

page-break-after Declares a page break. auto More


always Information
avoid
left
right

page-break-before Declares a page break. auto More


always Information
avoid
left
right
page-break-inside Declares a page break. auto More
avoid Information

size Declares the size and Lengths, and the More


orientation of a page box. following Information
predefined values:
auto
landscape
potrait

widows Declares the minimum Integers @page


number of lines of a { widows:2; }
paragraph that must be left
at the top of a page.
Table Properties
CSS Table Properties

Property Description Possible Values Examples

border-collapse Declares the way collapse table { border-


borders are separate collapse:collapse; }
displayed. table { border-
collapse:separate; }

border-spacing Declares the Lengths for the horizontal table { border-


distance separating and vertical spacing, spacing:5px; }
borders (if border- separated by a space. table { border-
collapse is If one length is value is spacing:5px 10px; }
separate). declared, that length is used
for both the horizontal and
vertical spacing. If two
lengths are declared, the first
one is used for horizontal
spacing and the second one is
used for vertical spacing.

caption-side Declares where the top caption { caption-


table caption is bottom side:top; }
displayed in left caption { caption-
relation to the right side:right; }
table.

empty-cells Declares the way show table { empty-


empty cells are hide cells:show; }
displayed (if table { empty-
border-collapse is cells:hide; }
separate).

table-layout Declares the type auto table { table-


of table layout. fixed layout:auto; }
table { table-
layout:fixed; }
Text Properties
CSS Text Properties

Property Description Possible Values Examples

color Declares the color of Valid color names, div { color:green; }


the text. RGB values, div { color:rgb(0,255,0); }
hexidecimal notation. div { color:#00FF00; }
The predefined color
names are:
aqua
black
blue
fuchsia
gray
green
lime
maroon
navy
olive
purple
red
silver
teal
white
yellow

direction Declares the reading ltr div { direction:ltr; }


direction of the text. rtl div { direction:rtl; }
ltr = left-to-right
rtl = right-to-left

line-height Declares the distance Numbers, percentages, div { line-


between lines. lengths, and the height:normal; }
predefined value of div { line-height:2em; }
normal. div { line-height:125%; }

letter-spacing Declares the amount A length (in addition div { letter-


of space between text to the default space) or spacing:normal; }
characters. the predefined value of div { letter-spacing:5px; }
normal. div { letter-spacing:-
1px; }

text-align Declares the left div { text-align:center; }


horizontal alignment right div { text-align:right; }
of inline content. center td { text-align:"."; }
justify
If used on a set of
table cells, this
property can be given
a string value to which
the text of each row of
the column will be
aligned.

text-decoration Declares the text none div { text-


decoration. underline decoration:none; }
overline div { text-
line-through decoration:underline; }
blink

text-indent Declares the Lengths and div { text-indent:12px; }


indentation of the first percentages. div { text-indent:2%; }
line of text.

text-shadow Declares shadow A list containg a color div { text-shadow:green


effects on the text. followed by numeric 2px 2px 7px; }
values (separated by div { text-shadow:olive
spaces) that specify: -3px -4px 5px; }
The color for the
shadow effect
Horizontal distance to
the right of the text
Vertical distance
below the text
Blur radius

text-transform Declares the none div { text-


capitalization effects capitalize transform:uppercase; }
on the letters in the uppercase div { text-
text. lowercase transform:lowercase; }

unicode-bidi Declares values normal div { unicode-bidi:embed;


relating to embed }
bidirectional text. bidi-override div { unicode-bidi:bidi-
May be used in override; }
conjunction with the
the direction property.

white-space Declares how white normal div { white-space:pre; }


space is handled in an pre div { white-space:nowrap;
element. nowrap }

word-spacing Declares the space A length (in addition div { word-


between words in the to the default space) or spacing:normal; }
text. the predefined value of div { word-
normal. spacing:1.5em; }
Other Properties
Other CSS Properties

Property Description Possible Values Examples

azimuth Declares the angle Angle values in div { azimuth:90deg; }


that sound travels degrees (deg), or one div { azimuth:behind; }
to the listener. of the following
predefined values:
left-side
far-left
left
center-left
center
center-right
right
far-right
right-side
behind
leftwards
rightwards

cue-after Declares an audio URL values and the div { cue-


cue to play after predefined value after:url(sound.wav); }
an element. none. div { cue-after:none; }

cue-before Declares an audio URL values and the div { cue-


cue to play before predefined value before:url(sound.wav); }
an element. none. div { cue-before:none; }

cue Shorthand proerty URL values and the div { cue:url(sound.wav)


to set both cue predefined value url(sound2.wav); }
values at once. none. Separate the div { cue:url(sound.wav); }
values by a space in
the following order:
cue-before
cue-after
If only one cue value
is declared, it is used
for both before and
after.

elevation Declares the Angle values in div { elevation:30deg; }


elevation of a degrees (deg), or one div { elevation:higher; }
sound. of the following
predefined values:
below
level
above
higher
lower

pause-after Declares the Time in milliseconds div { pause-after:100ms; }


amount of time to (ms) or percentages. div { pause-after:20%; }
pause after an
element.

pause-before Declares the Time in milliseconds div { pause-


amount of time to (ms) or percentages. before:100ms; }
pause before an div { pause-before:20%; }
element.

pause Shorthand proerty Separate the values div { pause:200ms


to set both pause by a space in the 100ms; }
values at once. following order: div { pause:100ms; }
pause-before
pause-after
If only one pause
value is declared, it is
used for both before
and after.

pitch Declares the Frequencies in hertz div { pitch:120Hz; }


average speaking (Hz) or the following div { pitch:high; }
pitch of a voice. predefined values:
x-low
low
medium
high
x-high

pitch-range Declares a change Number values div { pitch-range:50; }


in the pitch range between 0 and 100 div { pitch-range:99; }
of a voice. (lower values
indicate a flat voice
while higher values
indicate an animated
voice).

play-during Declares a URL value, followed div { play-


background sound by one or more of the during:url(music.wav); }
to be played while following keywords, div { play-
the current separated by spaces: during:url(music.wav)
element is spoken. mix repeat; }
repeat div { play-during:none; }
Alternatley, one of
the following
keywords:
auto
none

richness Declares the Numeric values div { richness:50; }


richness of the between 0 and 100 div { richness:0; }
voice in spoken (lower values have
text. less richness and
higher values have
more richness).

speak Declares if/how normal div { speak:none; }


text is spoken. none div { speak:spell-out; }
spell-out

speak-header Declares how once th { speak-header:once; }


often table header always th { speak-header:always; }
cells are spoken.

speak-numeral Declares how digits div { speak-


numerals are continuous numeral:digits; }
spoken. div { speak-
numeral:continuous; }

speak-punctuation Declares how code div { speak-


punctuation is none punctuation:code; }
spoken. div { speak-
punctuation:none; }

speech-rate Declares the A number indicating div { speech-rate:50; }


speech rate of the number of words div { speech-
spoken text. per minute, or one of rate:medium; }
the following
predefined values:
x-slow
slow
medium
fast
x-fast
faster
slower

stress Declares the stress Numeric values div { stress:50; }


of the voice on between 0 and 100 div { stress:0; }
spoken text. (lower values have
less stress and higher
values have more
stress).

voice-family Declares the voice Generic or specific More Information


family of spoken voice family names.
text.

volume Declares the Numbers between 0 div { volume:50; }


median volume. and 100, div { volume:silent; }
percentages, or one
of the following
predefined values:
silent
x-soft
soft
medium
loud
x-loud

Potrebbero piacerti anche