Visualizzazione dei risultati da 1 a 6 su 6

Discussione: Arrotondare bordi

  1. #1

    Arrotondare bordi

    Salve,

    ho installato il cutenews sul mio sito web. Sto facendo tutte le immagini con il bordo arrotondato, il cutenews con i suoi angoli a 90° stona. Mi chiedevo se esistesse un codice che arrotondi i bordi.

    Grazie mille a tutti

  2. #2

  3. #3
    Originariamente inviato da ashtur1
    http://www.html.it/articoli/niftycube/index.html

    c'era questo articolo
    Grazie tante, ma d'inglese ci capisco ben poco nonostante lo studio

  4. #4
    Moderatrice di Grafica, Cerco e offro lavoro L'avatar di Myaku
    Registrato dal
    Nov 2006
    Messaggi
    10,349
    Originariamente inviato da PipinoPiranha™
    Grazie tante, ma d'inglese ci capisco ben poco nonostante lo studio
    prova con questo link


  5. #5
    Originariamente inviato da Myaku
    prova con questo link

    Grazie mille, molto gentile!

    Spero di non aver problemi

  6. #6
    Utente bannato
    Registrato dal
    Sep 2007
    Messaggi
    2,777
    Originariamente inviato da PipinoPiranha™
    Grazie mille, molto gentile!

    Spero di non aver problemi
    Prova anche così:
    codice:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Documento senza titolo</title>
    <style type="text/css">
    <!--
    body,td,th {
    	color: #000000;
    }
    body {
    	background-color: #FFFFFF;
    }
    #contenitore {
    	position: absolute;
    	top: 200px;
    	left: 200px;
    }
    #a {
    	background: #000000;
    	margin-left: 7px;
    	width: 186px;
    	height: 1px;
    }
    #b {
    	background: #000000;
    	margin-left: 5px;
    	width: 190px;
    	height: 1px;
    }
    #c {
    	background: #000000;
    	margin-left: 3px;
    	width: 194px;
    	height: 1px;
    }
    #d {
    	background: #000000;
    	margin-left: 2px;
    	width:196px;
    	height: 1px;
    }
    #e {
    	background: #000000;
    	margin-left: 2px;
    	width: 196px;
    	height: 1px;
    }
    #f {
    	background: #000000;
    	margin-left: 1px;
    	width: 198px;
    	height: 1px;
    }
    #g {
    	background: #000000;
    	margin-left: 1px;
    	width: 198px;
    	height: 1px;
    }
    #h {
    	background: #000000;
    	margin-left: 0px;
    	width: 200px;
    	height: 0px;
    }
    #i {
    	background: #000000;
    	margin-left: 0px;
    	width: 200px;
    	height: 1px;
    }
    #l {
    	background: #000000;
    	margin-left: 0px;
    	width: 200px;
    	height: 1px;
    }
    #contenuto {
    	background: #000000;
    	color: #FFFFFF;
    	padding-left: 5px;
    	margin-left: 0px;
    	width: 195px;
    	height: 200px
    }
    #m {
    	background: #000000;
    	margin-left: 0px;
    	width: 200px;
    	height: 1px;
    }
    #n {
    	background: #000000;
    	margin-left: 0px;
    	width: 200px;
    	height: 1px;
    }
    #o {
    	background: #000000;
    	margin-left: 0px;
    	width: 200px;
    	height: 1px;
    }
    #p {
    	background: #000000;
    	margin-left: 1px;
    	width: 198px;
    	height: 1px;
    }
    #q {
    	background: #000000;
    	margin-left: 1px;
    	width: 198px;
    	height: 1px;
    }
    #r {
    	background: #000000;
    	margin-left: 2px;
    	width:196px;
    	height: 1px;
    }
    #s {
    	background: #000000;
    	margin-left: 2px;
    	width: 196px;
    	height: 1px;
    }
    #t {
    	background: #000000;
    	margin-left: 3px;
    	width: 194px;
    	height: 1px;
    }
    #u {
    	background: #000000;
    	margin-left: 5px;
    	width: 190px;
    	height: 1px;
    }
    #v {
    	background: #000000;
    	margin-left: 7px;
    	width: 186px;
    	height: 1px;
    }
    -->
    </style>
    </head>
    
    <body>
    
    <div id="contenitore">
      <div id="a"></div>
      <div id="b"></div>
      <div id="c"></div>
      <div id="d"></div>
      <div id="e"></div>
      <div id="f"></div>
      <div id="g"></div>
      <div id="h"></div>
      <div id="i"></div>
      <div id="l"></div>
      <div id="contenuto">Inserire qui i contenuto del box ad angoli arrotondati.</div>
      <div id="m"></div>
      <div id="n"></div>
      <div id="o"></div>
      <div id="p"></div>
      <div id="q"></div>
      <div id="r"></div>
      <div id="s"></div>
      <div id="t"></div>
      <div id="u"></div>
      <div id="v"></div>
    
    </div>
    </body>
    </html>

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.