Hello,
It is strange to me that html and css use different names for variables
which define the same properties. For example if I whant to define text
color from html document I write:
<body text="#dddddd">
And to define text color from css file I need to write:
body {color: "#dddddd";}
In the first example one need to use "text" in the second example
"color". Do you know where I can find an html-css dictionary in
Internet? Or at least, where I can find full list of css variable
names? For example I have in <body> tag bottomMargin="0 " and I would
like to set value of this parameter from css file and I am not sure
that in css file I can just write:
body {bottomMargin: "0"}
It is strange to me that html and css use different names for variables
which define the same properties. For example if I whant to define text
color from html document I write:
<body text="#dddddd">
And to define text color from css file I need to write:
body {color: "#dddddd";}
In the first example one need to use "text" in the second example
"color". Do you know where I can find an html-css dictionary in
Internet? Or at least, where I can find full list of css variable
names? For example I have in <body> tag bottomMargin="0 " and I would
like to set value of this parameter from css file and I am not sure
that in css file I can just write:
body {bottomMargin: "0"}
Comment