I've been looking to see if you could put JS code inside of CSS code, but with no luck, couldn't find an answer.
What I'm trying to do is make three pictures have variables in JS and put them in top: ; and left: ; code in CSS so that when completed, whatever variable value that they are, they will all move in unison.
//CSS Code//
.someclass {
top: x;
left: y;
}
//JS Code//
var x = #;
var y = #;
<!--Someplace that a variable can go here-->
<abbr title="Click For More Information About C#"><img src="https://img.icons8.com/color/500/000000/c-sharp-logo.png" alt="C# Programming Image"></abbr>
If made, the three pictures (Code not shown) will move in unison with other pictures that have the necessary values to do so.