Situatie
Modificarea stilului unui element HTML, este o variantă a schimbării unui atribut HTML:
Solutie
Pasi de urmat
<!DOCTYPE html>
<html>
<body>
<h2>Ce poate face JavaScript?</h2>
<p id=”test”>JavaScript poate schimba stilul unui element HTML.</p>
<button type=”button” onclick=”document.getElementById(‘test’).style.fontSize=’35px'”>Apasa-ma!</button>
</body>
</html>


Leave A Comment?