Saturday, November 15, 2025
HomeLanguagesJavascriptp5.js | style() Function

p5.js | style() Function

The style() function is used to set the style property of an element with the given value. If this function contains single parameter then use .style() function to return the value of the given property.

Note: This function requires the p5.dom library. So add the following line in the head section of the index.html file.

<script language=”javascript” type=”text/javascript” src=”path/to/p5.dom.js”></script>

Syntax:

style( property )

or

style( property, value )

Parameters:

  • property: This parameter holds the CSS property name.
  • value: This parameter holds the value of CSS property.

Return Value: This function returns the value of property.

Example 1:




function setup() {
      
    // Create canvas of size 400*200 
    createCanvas(400, 200);
      
    // Set background color
    background('green');
      
    // Create an input element
    var input_val = createInput('');    
      
    // Set the attribute and its value    
    input_val.attribute('value', 'Welcome to neveropen');  
    
    // Set the position of div element
    input_val.position(60, 80); 
    
    // Set width of input field
    input_val.style('width', '250px');
    
    // Set font-size of input text
    input_val.style('font-size', '20px');
  


Output:

Example 2:




function setup() {
      
    // Create canvas of size 400*200 
    createCanvas(400, 200);
      
    // Set background color
    background('green');
      
    // Create an input element
    var div_cont = createDiv('Welcome to neveropen');
      
    // Set the position of div element
    div_cont.position(60, 80); 
    
    // Set the font color
    div_cont.style('color', '#ffffff');  
    
    // Set width of input field
    div_cont.style('width', '250px');
    
    // Set font-size of input text
    div_cont.style('font-size', '20px');
  


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS