Wednesday 17 March 2021

MVC - Add scrollbar to @Html.DisplayFor

 Watch this example on YouTube


 

1.CSS

 .LongText{
    word-wrap:break-word;
    height: 10em;
    width: 20em;
    overflow-y: scroll;
}

2.View 

    <div class="LongText">
        @Html.DisplayFor(x => x.Description)
    </div>

No comments:

Post a Comment