Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <cfscript>
  2. variables.structCSS = {
  3. "text-decoration" = "none",
  4. "color" = "red",
  5. "border-left" = ".5em",
  6. "display" = "inline-block"
  7. };
  8.  
  9. writeOutput(variables.structCSS.color & "<br/>");
  10. writeOutput(variables.structCSS["display"] & "<br/>");
  11.  
  12. writeOutput(variables.structCSS["text-decoration"]);
  13. </cfscript>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement