When you use Web Forms Designer to edit a Web Form in Visual Studio 2013, Visual Studio crashes. This issue occurs when the page uses a specific combination of Cascading Style Sheets (CSS) rules. For example, the page uses the folowing rules:
If all these rules are applied to the same element in the HTML of the Web Form, Visual Studio crashes when the file is opened in Web Form Designer.
<style type="text/css">
.class1 {
line-height: 25px;
}
.class2 {
font-size: 15px;
}
.class3 {
line-height: inherit;
}
</style>
If all these rules are applied to the same element in the HTML of the Web Form, Visual Studio crashes when the file is opened in Web Form Designer.