Search w3schools.com:

SHARE THIS PAGE

Style cssText Property

Style Object Reference Style Object

Definition and Usage

The cssText property sets or returns the contents of a style declaration as a string.

Syntax

Set the cssText property:

Object.style.cssText="string"

Return the cssText property:

Object.style.cssText

Value Description
string Specifies the content of a style declaration


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The cssText property is supported in all major browsers.


Example

Example

Get the style declaration as a string:

<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("p1").style.cssText);
}
</script>
</head>
<body>

<p id="p1" style="border:2px dashed green;color:red;">This is a paragraph.</p>
<br>
<button type="button" onclick="displayResult()">Get style declaration</button>

</body>
</html>

Try it yourself »


Style Object Reference Style Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]