HTML code displaying when we double click on web page in HTML5

Discussion in 'Web Design, HTML And CSS' started by purna.chaganti, Dec 14, 2014.

  1. purna.chaganti

    purna.chaganti New Member

    Joined:
    Nov 25, 2012
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    Hi,

    1.I am facing issue with double click on web page getting the html code in HTML5. Could you please help me on this.
    2. HTML5 hover color is not working could you please help me on this.
     
  2. purna.chaganti

    purna.chaganti New Member

    Joined:
    Nov 25, 2012
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    3. it's happening when we turn off the enterprise mode otherwise it's won't replicate.
     
  3. anthonyemuobo

    anthonyemuobo New Member

    Joined:
    Mar 25, 2015
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    0
    Maybe you are not doing it right for the hover not to work. Why not paste the code here or follow this format/example I have given. Hope it helps.
    HTML:
    #header {
        height: 50px;
        width: 100px;
        background-color: #3cff9c;
        transition: background-color 1s;
    }
    
    #header:hover {           
        background-color: #008c74;
    }
    
    <div id="header"></div>
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice