I'm new with ASP.NET MVC, at the cshtml I have some style:
.circle {
border: 2px solid red;
background-color: #FFFFFF;
height: 100px;
border-radius:50%;
width: 100px;
}
<div class="circle"></div>
And I want to change the circle position from the controller, I can I achieve that? In the controller I need something like:
circle.MarginLeft = 120;