sitelink1 | |
---|---|
sitelink2 | |
sitelink3 | http://1 |
sitelink4 | http://ko |
extra_vars5 | http://www.w3schools.com/jsref/prop_style_csstext.asp |
extra_vars6 | sitelink1 |
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
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>
<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>
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
» | Style cssText Property | 황제낙엽 | 2012.09.13 | 320 |
11 | 브라우저별 border 설정에 따른 디자인 테스트 고려사항 | 황제낙엽 | 2012.08.28 | 96 |
10 | CSS 문법 분석 | 황제낙엽 | 2012.08.28 | 104 |
9 | Element 의 투명도 | 황제낙엽 | 2012.05.25 | 179 |
8 | IE Conditional Comments 필터링 | 황제낙엽 | 2011.10.05 | 143 |
7 | How To Create an IE-Only Stylesheet | 황제낙엽 | 2011.10.05 | 147 |
6 |
Document documentMode Property
![]() | 황제낙엽 | 2011.10.04 | 981 |
5 |
(CSS2) RGBA값 사용해보기 및 IE 패치 방법
![]() | 황제낙엽 | 2011.10.04 | 202 |
4 | Style overflow Property | 황제낙엽 | 2011.06.27 | 205 |
3 |
pt, px, em, % 비교표
![]() | 황제낙엽 | 2011.05.24 | 788 |
2 | 박스(box) 모델 | 황제낙엽 | 2009.06.27 | 271 |
1 | Element 의 visibility스타일과 display스타일 | 황제낙엽 | 2008.09.24 | 93 |