How do I Css webkit code use?

0 favourites
  • 5 posts
From the Asset Store
5 levels with simple coding Source-code (.c3p) + HTML5 Exported
  • Hello... can you help me in the use of these style commands:

    ::-webkit-scrollbar {

    width: 31px;

    height: 31px;

    }

    I changed the size of my scrollbar in the list in this way in a file styles.css... Now how do I change the border of the list?

    I can't find a list of webkit codes... I expected to see something like

    ::-webkit-border {

    10px

    }

    but wouldn't that be so? Where do I have a list that I can use an "everything" generator in webkit css ?

  • Assuming you are talking about the border of the scrollbar, try this:

    Try something like this:

    ::-webkit-scrollbar-track {
     box-shadow: inset 0 0 5px grey; 
     border-radius: 5px;
    }

    If you are referring to an actual list view. You can just use the CSS border property and use whatever selector is most relevant.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • If you are referring to an actual list view. You can just use the CSS border property and use whatever selector is most relevant.

    HOW DO THIS ?

  • If you posted your HTML I could be more specific with your request.

    Let's say you have an unordered list.

    <ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    </ul>

    <ul> <li>One</li> <li>Two</li> <li>Three</li> <li>Four</li> </ul>

    You can then use the unordered list selector:

    ul {border-style: solid;}

    Obviously you'll need to change the selector based on your HTML and if your uses any class / id, otherwise it will change all lists.

  • Thanks i find the "SET CSS STYLE" On list actions.

    Properties "Border"

    Value "Double"

    Work ok.

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)