jd2007 Posted July 19, 2007 Share Posted July 19, 2007 Can CSS contain variables which can be modified with php ? Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/ Share on other sites More sharing options...
AndyB Posted July 19, 2007 Share Posted July 19, 2007 Yes Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/#findComment-302040 Share on other sites More sharing options...
jitesh Posted July 19, 2007 Share Posted July 19, 2007 yes but can not write in css files. Example in php file $size = 10; $css = "<style type=text/css> .stylecss{ font-size:".$size." } </style>"; Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/#findComment-302041 Share on other sites More sharing options...
jd2007 Posted July 19, 2007 Author Share Posted July 19, 2007 thanks... Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/#findComment-302048 Share on other sites More sharing options...
jd2007 Posted July 20, 2007 Author Share Posted July 20, 2007 how do i use the css code above to change text font ? Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/#findComment-303141 Share on other sites More sharing options...
sKunKbad Posted July 20, 2007 Share Posted July 20, 2007 if ($youwantbold){ $weight = 'bold'; echo "<p style='font-weight:$weight;'>You wanted bold so here is some bold text! Yay for bold!</p>"; } Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/#findComment-303146 Share on other sites More sharing options...
jd2007 Posted July 20, 2007 Author Share Posted July 20, 2007 thanks... Link to comment https://forums.phpfreaks.com/topic/60718-can-css-contain-variables-which-can-be-modified-with-php/#findComment-303156 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.