You can override external css properties using internal css. This can also be achieved in three different ways:
1) declare your css properties on the page itself, for example, according to your code, including style tags and post properties between
< html> < head> < link rel="stylesheet" href="myCSS.css" type="text/css"> < script type="text/ecmascript" src="myJS.js" /> <style type="text/css"> ........................ ......................... </style> < /head> < p > change css style color for this element using javascript < /p> < /html>
2) Using inline css
< p style="font-color:red;"> change css style color for this element using javascript < /p>
3) Using javascript: this is just another way, or you can say an indirect way to implement the implementation of the internal css implementation. See The First Answer Asked by @Misam
dirtyhandsphp
source share