Posts by Rafael Bini • 29 points
4 posts
-
0
votes1
answer986
viewsA: Flexbox max-width 100%
You can add the property flex-wrap: wrap in class notification: .notification { flex-wrap: wrap; display: flex; background: gray; overflow-x: auto; width: 100%; height: 250px; max-width: 100%;…
-
0
votes1
answer57
viewsA: disable javascript in mobile version
Try adding this to your page: <style> @media only screen and (max-device-width: 680px) { #wipey-canvas{ display: none !important; } } </style> Thus, you will make the canvas invisible…
-
1
votes1
answer63
viewsA: cannot add 100% width to content sessions
The div <div class="corpo" id="corpo"> is encompassing all sections of the content of your site. As this div has no width specification, all width: 100% that you put inside will get limited.…
-
1
votes1
answer103
viewsA: Problem with ngFor
If this is the root module of the project (AppModule), you must keep only the BrowserModule in the imports: [] of @NgModule(). If it is not the root module of the project, you keep only the…
angularanswered Rafael Bini 29