html - inline div is not in center of another div/section on server but on localhost its fine -


here website , part im having issues https://kas-test.000webhostapp.com/volonteri.html

top part used inline tag works not in center bottom part, on kontakt.html.. off course while when run same code on localhost looks fine..

here picture of localhost: picture

its in center.. why?

i recommend start using grid system (bootstrap has one). blockquote isn't way make "left border", can accomplish using border-left: 5px solid black

but if want "hotfix" code, can update doing:

.inline {   display: inline-block;   width: calc(50% - 30px); // new   max-width: 500px; // new   margin: 15px;   float: left; }  blockquote {   text-align: justify;   border-left: 5px solid black;   border-radius: 3px;   padding-left: 20px; // new } 

cheers,


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -