make a .css file like test.css and use it like:
    <link href="test.css" rel="stylesheet" type="text/css" />
hope this helps!!

On Sun, Jan 11, 2009 at 3:56 PM, Lord Gustavo Miguel Angel <
goosfanc...@gmail.com> wrote:

>  Hello all!
>
> I have this .html
> -----------------
>     <script language="JavaScript" type="text/javascript" src="jvs/
> jquery-1.2.5.js" ></script>
>
> <script type="text/javascript">
> $(document).ready(function(){
>
> $("p").click(function(event){
> alert("Thanks for visiting!");
> });
> });
>     </script>
>
> </head>
>
> <body>
> <div id="contenidos">
>         <p>Escoger del menu</p>
>     </div>
>
> </body>
>
> </html>
>
> ----------- eof 8< ----
>
> and i have this other .css:
>
> ---------------------------------
> #contenidos{
>     float:left;
>     width:480px;
>     min-height: 250px;
>     border: 3px solid grey;
>     margin-left: 10px;
>     padding: 5px;
>     padding-bottom: 8px;
>     background-color: #fff;
> }
>
> ---------EOF 8<---------------------
>
> my question. How i do to used this .css file in  my .html with jQuery¿
>
> Thank´s
>

Reply via email to