Can I use if condition in style tag like this?
<style>
@@media (min-width: 765px) {
html,body
{
min-width: auto;
width: 100%;
@{
if (ViewBag.type == "pic")
{
@:min-height:100vh;
@:height:auto;
}
else {
@:height: 100vh;
}
}
}
}
</style>
Or I should use CSS directly in HTML?