Posts by Wesley S. • 66 points
4 posts
-
1
votes4
answers2632
viewsA: What is the equivalent of CSS media queries in Javascript?
You can check the screen size and make changes with css, see: document.getElementById("demo").innerHTML = "Screen Width: " + screen.width; //tamano da tela var size = screen.width; if(size <…
-
1
votes1
answer65
viewsA: Div without padding lef and right in mobile view
Try: @media (min-width: 768px){ .row{ padding-left: 15px; padding-right: 15px; } }
-
1
votes1
answer99
viewsA: Problem coloring table rows in print using @media ASP.NET MVC
@print media { } you’re wearing it like this : @@print media { }
-
2
votes1
answer38
viewsQ: How to turn a query row into columns and group according to the first 4 characters?
I would like to transform the return of my SQL query into an array where I select the first four characters, which will act as a kind of group, and return the values for that group in columns. I’m…