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 131361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:05:36+00:00 2026-05-11T06:05:36+00:00

I have a CSS class defined, call it: <style type=text/css> .Foo { position: fixed;

  • 0

I have a CSS class defined, call it:

<style type='text/css'> .Foo { position: fixed; left: 50px; top: 50px; } </style> 

where I position an element on the screen absolutely. Throughout my web page’s execution, I create and delete many elements and give them class Foo. When I resize the browser, I want to change the left and top values on the Foo class so the position of all Foo elements is changed as a result of a calculation.

I don’t want to simply change stylesheets, I want to calculate a value and make all current and future Foo elements have that new calculated left and top value.

This site has an example, but the code’s quite complex. http://www.shawnolson.net/a/503/altering-css-class-attributes-with-javascript.html

Is there a good, clean way to basically programmatically alter what Foo is defined as?

Thanks!

  • 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. 2026-05-11T06:05:36+00:00Added an answer on May 11, 2026 at 6:05 am

    I think this is what you want:

    <script> var style; function changeFoo(left, top) {     if(typeof style == 'undefined') {         var append = true;         style = document.createElement('style');     } else {         while (style.hasChildNodes()) {             style.removeChild(style.firstChild);         }     }     var head = document.getElementsByTagName('head')[0];     var rules = document.createTextNode(         '.Foo { left: ' + left + 'px; top: ' + top + 'px; }'     );      style.type = 'text/css';     if(style.styleSheet) {         style.styleSheet.cssText = rules.nodeValue;     } else {         style.appendChild(rules);     }     if(append === true) head.appendChild(style); } </script> 

    This code was modified from an answer provided in this question which is very similar to what you asked. Whenever you need to change the position of all .Foo elements, you can just call changeFoo(newLeftValue, newTopValue); – the first time around it will create the <style> element and add it to the <head> of the document. Subsequent calls will just empty the <style> element that was already added and add the new rule.

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

Sidebar

Ask A Question

Stats

  • Questions 78k
  • Answers 78k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer You're right the second assignment replaces the first. It doesn't… May 11, 2026 at 3:47 pm
  • added an answer <asp:HyperLink ID='HyperLink2' runat='server' Text='Manage Related Items' NavigateUrl='#' onClick='<%# 'window.open('editRelatedItems.aspx' +… May 11, 2026 at 3:47 pm
  • added an answer If you mean in the designer, you can just click… May 11, 2026 at 3:47 pm

Related Questions

Say i have a <table> with a css class defined (<table class=x>) and i
I am concerned with using CSS classes that are defined in style sheets with
As you most likely already know, it's simple in JQuery to select all elements
I have a <table/> in a ViewUserControl that I have given the tag a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.