asp.net mvc - <li> doesn't work. MVC -
i have view in trying display text bulleted items (<ul> <li>)
doesn't seem work. tried <ul><li>
without enclosing them in <div>
still no luck. preventing display bullets in front of text.
@model udp.models.mcvm @{ viewbag.title = "mcreport"; layout = "~/views/shared/_reportslayout.cshtml"; } <div class="span-24 last" > @* code filling grid goes here*@ </div> <div class="prepend-1 span-22"> <strong> notes : </strong> <ul type="circle" > <li> listings sorted according user defined sort, , may not display in order used determine median values.</li> <li> time ranges based on 360-day year commonly called 'banking year'.</li> <li> listings 'disqualified' median value calculations when selling, expiration, or inactive date more 360 days current date.</li> <li> sales price/list price calculations calculated using original list price.</li> </ul> </div> <script type="text/javascript"> function loadandinit() { $(".dvloading").hide(); if ($.browser.mozilla) { if (location.pathname == "/udp/reports") { // local env. $("#prntcss").attr("href", "../../../content/siteprint_ff.css"); } else { // dev/qa/stage/prod env. $("#prntcss").attr("href", "../../content/siteprint_ff.css"); } } } </script>
Comments
Post a Comment