Created
June 14, 2014 13:21
-
-
Save andrexx/22a527cf0f0ffb7d9d7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="result-table"> | |
<tr> | |
<td colspan="2" class="wordwrap"><div class="result-title">@Model.Result.RequestType </div></td> | |
</tr> | |
<tr> | |
<td class="col1">1</td> | |
<td class="col2 wordwrap">@Model.Result.RegistrationNumber</td> | |
</tr> | |
<tr> | |
<td class="col1">2</td> | |
<td class="col2 wordwrap">@Model.Result.RegistrationDate</td> | |
</tr> | |
</table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.wordwrap { | |
white-space: pre-wrap; | |
white-space: -moz-pre-wrap; | |
white-space: -pre-wrap; | |
white-space: -o-pre-wrap; | |
-ms-word-wrap: break-word; | |
word-wrap: break-word; | |
} | |
.result-table { | |
width: 100%; | |
border-collapse: separate; | |
table-layout:fixed; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment