Centering button
Centering button
datatable_user
Posts: 19Questions: 6Answers: 0
I need to center my button. My button is center in mobile viewport but with desktop viewport, the button will stay on the left. I can use margin
but it will ruined centering in mobile. Here's my code:
https://jsfiddle.net/Laox2sgz/5/
Full view : https://jsfiddle.net/Laox2sgz/5/show
Is there anyway I can center button without using Media Queries
? Thanks in advance.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Its frustratingly difficult to do that for certain!
The key to fixing it is the
dom
property. You'd need to set up a grid ofdiv
elements that can be styled. For example, this is how the Bootstrap 4 integration is done which uses the Bootstrap grid.Allan