Prikazi cijelu temu 17.04.2020 22:54
mirsadz Van mreze
Administrator
Registrovan od:26.05.2011
Lokacija:BiH


Predmet:Re: Responsive web stranica
Pokušaj samo postaviti ".centar" da bude width: 100%; ali kod @media. Dakle ovako:

PreuzmiIzvorni kôd (CSS):
  1. @media only screen and (max-width: 768px) {
  2.  
  3. .header {
  4.         width: 100%;
  5.         margin: 0px auto 0px;
  6.         color: white;
  7.         background: #5F9EA0;
  8.         text-align: center;
  9.         border: 1px solid #B0C4DE;
  10.         border-bottom: none;
  11.         border-radius: 10px 10px 0px 0px;
  12.         padding: 20px;
  13. }
  14.  
  15. form, .content {
  16.        
  17.         width: 100%;
  18.         height: 100%;
  19.         margin: 0px auto;
  20.         padding: 20px;
  21.         border: 1px solid #B0C4DE;
  22.         background: white;
  23.         border-radius: 0px 0px 10px 10px;
  24. }
  25.  
  26. .centar{
  27.         width: 100%;
  28.   }
  29.  
  30. .input-group{
  31.         width: 100%;
  32.        
  33. }
  34. }