Sponsored Content
The Lounge What is on Your Mind? Number of Small Forum Code Changes (TODO List Items) Post 303027879 by Neo on Thursday 27th of December 2018 09:32:17 AM
Old 12-27-2018
Have Bootstrap'ied many, many mobile pages, especially editors, etc. Things are looking good and I'm getting board with cleaning up CSS and Bootstrap, but mobile is now looking much better, and since I use it a lot, that's important! Haha.

Maybe I'll start on the new badging system soon... I keep putting it off, doing housekeeping and code cleanup tasks first; but at some point in time, cleaning up CSS is getting mundane. The good news is that I'm getting REALLY good at it.

I look at my legacy code and think to myself "wow, I was such a terrible CSS coder back then!!!!!"

If I was not so busy making it happen, I could write a book or do use YT videos on this stuff!

I can do things in minutes that took hours years ago. My jQuery and CSS skills are really good. I've almost memorized half or more of the Bootstrap classes (give or take) and can code a lot of Bootstrap without references and cheatsheets at blazing speeds. Wooo Hoooo..... Mama' don't let your babies grow up to be coderrrrrrrs ...... LOL

I guess I need to master VueJS sooner than later; maybe I'll do the new badging system in Vue... maybe not!
 

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

change list to comma seperated items

I have a list of servers in a file called serverlist like this server1 server2 server3 i need to have them (with no trailing comma, the program does not like that) server1,server2,server3 so far i have been using HOSTS=/tmp/serverlist HOSTS=${HOSTS:-$(grep -Ev "^#|^$"... (2 Replies)
Discussion started by: insania
2 Replies

2. UNIX for Dummies Questions & Answers

Number of items in a directory

This should be so simple.. I have folder with about 27 subfolders in it, each folder has a number of fonts in it.. how do I get the total number of fonts for all subfolders? (2 Replies)
Discussion started by: glev2005
2 Replies

3. Shell Programming and Scripting

Help needed regarding first 3 items in the list

Hi, I've a list in the following format: Empdept filedetails buildingNo Area AAA 444 2 juy AAA 544 2 kui AAA 567 4 poi AAA 734 5 oiu AAA 444 ... (2 Replies)
Discussion started by: skpvalvekar
2 Replies

4. Shell Programming and Scripting

Counting the number of readable, writable, and executable items in a directory

Hello, I'm writing a script in sh in which the first command line argument is a directory. from that, i'm suppose to count the number of readable, writable, and executable items in the directory. I know using $1 represents the directory, and ls would display all the items in the directory, and that... (4 Replies)
Discussion started by: kratos22
4 Replies

5. Shell Programming and Scripting

Parsing through a list of items

Hi there, Here is my checklist of items, 4.1.1 Alerter 4.1.2 Client Services for Netware 4.1.3 Clipbook 4.1.4 Fax Service 4.1.5 File Replication 4.1.6 File Services for Macintosh 4.1.7 FTP Publishing Service 4.1.8 Help and Support 4.1.9 HTTP SSL 4.1.10 IIS Admin Service ... (1 Reply)
Discussion started by: alvinoo
1 Replies
CSS::DOM::Value(3pm)					User Contributed Perl Documentation				      CSS::DOM::Value(3pm)

NAME
CSS::DOM::Value - CSSValue class for CSS::DOM VERSION
Version 0.14 SYNOPSIS
# ... DESCRIPTION
This module implements objects that represent CSS property values. It implements the DOM CSSValue interface. This class is used only for custom values (neither primitive values nor lists) and the special 'inherit' value. METHODS
Object Methods cssText Returns a string representation of the attribute. Pass an argument to set it. cssValueType Returns one of the constants below. Constructor You probably don't need to call this, but here it is anyway: $val = new CSS::DOM::Value %arguments; The hash-style %arguments are as follows: type "CSS_INHERIT" or "CSS_CUSTOM" css A string of CSS code. This is only used when "TYPE" is "CSS_CUSTOM". owner The style object that owns this value; if this is omitted, then the value is read-only. The value object holds a weak reference to the owner. property The name of the CSS property to which this value belongs. "cssText" uses this to determine how to parse text passed to it. CONSTANTS
The following constants can be imported with "use CSS::DOM::Value ':all'". They represent the type of CSS value. CSS_INHERIT(0) CSS_PRIMITIVE_VALUE(1) CSS_VALUE_LIST(2) CSS_CUSTOM(3) SEE ALSO
CSS::DOM CSS::DOM::Value::Primitive CSS::DOM::Value::List CSS::DOM::Style perl v5.10.1 2010-12-10 CSS::DOM::Value(3pm)
All times are GMT -4. The time now is 07:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy