Rivine255 / crime_stopper1.0

A web application that assists in entering, storing and viewing crime reports for a police service.
Apache License 2.0
3 stars 0 forks source link

Remove Redundant Divs #9

Closed dionkapf closed 4 years ago

dionkapf commented 4 years ago

I have noticed that our various layouts have too many nested divs. This is hampering our attempts to effectively unify and streamline our UX and UI design.

<div class="container">
    <div class="nested_container">
        <element id="foo">
            Content
        </element>
    </div>
</div>

The above code is difficult to style and produces unpredictable and confusing results with little to no benefit. I will be optimizing the pages to a format similar to the following.

<div class="container">
    <element id="foo">
        Content
    </element>
</div>

If there's any issues, questions, or concerns please feel free to reply below. We can always continue the conversation on the Group Chat as well.