• 05-10-2024, 19:13:12
    #1
    Merhaba

    Bir table da border radius kullanıyorum ancak alt kısımda köşeli olmamasına rağmen üst taraflarda arkaplan köşeli çıkıyor.
    Çözümü nedir?



    .table {
      background-color: #292e38;
      border-radius: 10px;
      width: 100% !important;
    }
  • 05-10-2024, 19:15:39
    #2
    border-top-left-radius buna bak hocam
  • 05-10-2024, 19:20:38
    #3
    Border-radius: 10px !important; eklermisin, belki başka noktada top left'e özel bir ekleme yapılmıştır l.
  • 05-10-2024, 19:24:22
    #4
    .table {
      background-color: #292e38;
      border-radius: 10px !important;
      width: 100% !important;
    }
     
    .table-responsive.brands-table .table {
        margin-bottom: 1rem;
    }
    hem böyle

    .table {
      background-color: #292e38;
      border-radius: 10px;
      border-top-right-radius: 10px;   
      border-top-left-radius: 10px;   
      width: 100% !important;
    }
     
    .table-responsive.brands-table .table {
        margin-bottom: 1rem;
    }
    hem de böyle denedim ancak yine olmadı.
  • 05-10-2024, 19:32:32
    #5
    oldu.

    başka bir table kullanıyormuş. Hepinize teşekkür ederim.

    .table-responsive {
      overflow-x: auto;
      border-radius: 10px;
      /* box-shadow: inset 0 0 5px rgba(150, 150 ,150,0.35); */
      margin: auto;
      overflow-y: hidden;
    }