Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7007955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:40:25+00:00 2026-05-27T21:40:25+00:00

First I create element : var link = document.createElement(‘a’); And my document is loaded,

  • 0

First I create element :

var link = document.createElement('a');

And my document is loaded, styles and scripts are in effect.

styles migt be for example:

a { background-color: salmon; }

so it applies to all A tags.

Does this newly created element in those circumstances has all CSS propertions set to their defaults as put in specification and is styled while inserted into DOM or is styled right at creation.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:40:26+00:00Added an answer on May 27, 2026 at 9:40 pm

    No, until the element’s attached to the DOM it remains unstyled. Or, at least, its computed-style is unavailable (presumably because it’s not yet rendered):

    HTML:

    <a href="#">Something</a>
    

    CSS:

    a {
        color: purple;
    }
    

    JavaScript:

    var body = document.getElementsByTagName('body')[0];
    var a = document.createElement('a');
    a.href = 'http://google.com/';
    a.innerHTML = 'link to google';
    
    console.log('color: ' + window.getComputedStyle(a,null).getPropertyValue('color'));
    
    body.appendChild(a);
    
    console.log('color: ' + window.getComputedStyle(a,null).getPropertyValue('color'));
    

    JS Fiddle.

    If, however, you explicitly style the element with JavaScript, which adds to the style attribute of the created element, that styling information is available immediately (albeit still not via the getComputedStyle()):

    var body = document.getElementsByTagName('body')[0];
    var a = document.createElement('a');
    a.href = 'http://google.com/';
    a.innerHTML = 'link to google';
    a.style.color = 'green';
    
    console.log('color: ' + a.style.color);
    
    body.appendChild(a);
    
    console.log('color: ' + a.style.color);
    

    JS Fiddle.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I first obtain an element: var i=document.getElementsByTagName(fieldset); Then I create a new object: var
Experienced with Rails / ActiveRecord 2.1.1 You create a first version with (for example)
I have to create the effect of bordered when I hover over element and
When upgrading MySQL, I first create a backup of the database. Then I will
I'm after a simple stored procedure to drop tables. Here's my first attempt: CREATE
Trying to create my first iPhone app that would play back audio. When I
I'm attempting to create my first real C# application - a small pet project
I'm attempting to create my first WCF service. I've created the service and now
I am trying to create my first custom Print Dialog in C#. I found
I'm trying to create my first data mart. I am creating my dimension table

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.