我希望在一个div中有一个子弹点,我指定了这个类"标准"。我重写了另一个显示列表项背景的类。什么都没发生:
div.standard ul li {
display:list-item !Important;
list-style-type: disc !Important;
}
该页面如下: http://mw.theseolounge.co.uk/index.php/marsden-m-300.html 和项目列表在主要功能下。 我做错了什么?
答案 0 :(得分:0)
您正在应用样式直接列出项目@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == PICK_CONTACTS && resultCode == RESULT_OK) {
// Get the URI and query the content provider for the EMAIL
Uri contactUri = data.getData();
String[] projection = new String[]{CommonDataKinds.Email.ADDRESS};
Cursor cursor = getContentResolver().query(contactUri, projection, null, null, null);
// If the cursor returned is valid, get the email
if (cursor != null && cursor.moveToFirst()) {
String email = cursor.getString(0);
}
}
}
,而应将其应用于实际列表li
或ul
本身。尝试使用以下css将样式直接应用于列表:
ol
答案 1 :(得分:0)
您必须将list-style-type
放入ul
,而不是li
。而且我认为你可以摆脱display: list-item
。