Sets the style attribute for the tag.
Value | Use |
---|---|
null | prevents the attribute from being added to the tag |
string | adds the content of 'string' as the attribute value |
array | adds each item in the array as an attribute value |
$style = 'color: red; font-size: 120%';
<tag style="color:red; font-size:120%" {...}
$style = array('color'=>'red','font-size'=>'120%');
<tag style="color:red; font-size:120%" {...}